annabunches.net/Makefile

15 lines
230 B
Makefile
Raw Normal View History

DOCKER_IMAGE := cr.annabunch.es/annabunches-static
2020-05-15 01:45:53 +00:00
.PHONY: all build push
2020-05-15 21:15:51 +00:00
all: serve
serve:
hugo serve -D --bind 0.0.0.0 -b http://${DEV_IP}:1313/
build:
docker build -t ${DOCKER_IMAGE} .
push:
docker push ${DOCKER_IMAGE}