16 lines
384 B
Makefile
16 lines
384 B
Makefile
# If we have `--squash` support, then use it!
|
|
ifneq ($(shell docker build --help 2>/dev/null | grep squash),)
|
|
DOCKER_BUILD = docker build --squash
|
|
else
|
|
DOCKER_BUILD = docker build
|
|
endif
|
|
|
|
all: build
|
|
|
|
build: Makefile Dockerfile
|
|
$(DOCKER_BUILD) -t staticfloat/nginx-certbot .
|
|
@echo "Done! Use docker run staticfloat/nginx-certbot to run"
|
|
|
|
push:
|
|
docker push staticfloat/nginx-certbot
|