8 lines
165 B
Makefile
8 lines
165 B
Makefile
|
all: build
|
||
|
|
||
|
build: Makefile Dockerfile
|
||
|
docker build --squash -t staticfloat/docker-letsencrypt-cron .
|
||
|
|
||
|
push: build
|
||
|
docker push staticfloat/docker-letsencrypt-cron
|