diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -1,12 +1,18 @@ -.PHONY: fly +VERSION=0.0.1 +DOCKER_IMAGE=alexemery/home:${VERSION} +.PHONY: fly fly: cd proxy && fly deploy -.PHONY: content -content: - go run ./cmd/generate - -.PHONY: serve -serve: content +.PHONY: serve +serve: go run ./cmd/home + +.PHONY: image +image: + docker build . -t ${DOCKER_IMAGE} + +.PHONY: public +public: image + docker push ${DOCKER_IMAGE} |
