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)
|