From 911a7dc7296f76a5de0538b3c3536167a89195d8 Mon Sep 17 00:00:00 2001 From: a73x Date: Sun, 25 Aug 2024 10:04:00 +0100 Subject: add ui --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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} -- cgit v1.2.3