diff options
| author | a73x <[email protected]> | 2024-08-25 10:04:00 +0100 |
|---|---|---|
| committer | a73x <[email protected]> | 2024-08-25 10:04:00 +0100 |
| commit | 911a7dc7296f76a5de0538b3c3536167a89195d8 (patch) | |
| tree | 662014839ebed4077e066ed2b86b9e7a0c045185 /Makefile | |
| parent | d9ae1cb433a5fe66c3f64b15e5849d11a87d0c53 (diff) | |
add ui
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
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} |
