sandbox/Makefile

12 lines
249 B
Makefile
Raw Normal View History

2016-04-08 11:43:57 +00:00
YYYYMMDD := $(shell date +%Y%m%d)
default: build
build:
script -q ./build.log docker build --no-cache -t sneak/sandbox .
docker tag sneak/sandbox sneak/sandbox:$(YYYYMMDD)
2016-04-08 12:28:32 +00:00
push:
2016-04-08 11:43:57 +00:00
docker push sneak/sandbox
docker push sneak/sandbox:$(YYYYMMDD)