aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-02-17 08:36:12 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-02-17 08:36:12 +0100
commit16cd08a25388d9739bd3e9c4b8011a7bb9fc9e61 (patch)
tree7a6fb35afd64aad26c140d6bd32b2b5f0cc352f3
parent52a87459a6a1af2902048daa9e50fd40646fe991 (diff)
Add makefile
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..943d2c0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+TAG="monique.moccu:5000/gowiki"
+
+all: publish
+
+build:
+ docker build -t ${TAG} .
+
+publish: build
+ docker push ${TAG}