10 lines
242 B
Makefile
10 lines
242 B
Makefile
|
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)
|
||
|
docker push sneak/sandbox
|
||
|
docker push sneak/sandbox:$(YYYYMMDD)
|