DOCKER_IMAGE := cr.annabunch.es/annabunches-static .PHONY: all build push 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}