summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d49496a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+VERSION=0.0.1
+DOCKER_IMAGE=a73xsh/cgit:${VERSION}
+
+.PHONY: image
+image:
+ docker build . -t ${DOCKER_IMAGE}
+
+.PHONY: public
+public: image
+ docker push ${DOCKER_IMAGE}