From af15d220b3f4c1b1bb698b70f7b76d00c6785499 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Thu, 9 Jun 2022 20:05:24 +0300 Subject: [PATCH] Add makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile 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}