VERSION=0.0.1 DOCKER_IMAGE=a73xsh/home:${VERSION} .PHONY: serve serve: go run ./cmd/home .PHONY: css css: go run contrib/styles.go > public/static/syntax.css .PHONY: image image: docker build . -t ${DOCKER_IMAGE} .PHONY: public public: image docker push ${DOCKER_IMAGE}