diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8e72f0f --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: pull image push + +REPO=docker.io +IMAGE=functionalhacker/gitea-asciidoc + +pull: + @docker pull gitea/gitea:1 + +image: pull + @docker build . -t ${REPO}/${IMAGE} + +push: image + @docker push ${REPO}/${IMAGE}