From a7a47e2874299e60750d825bc209bc9a3f954a1f Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 18 Aug 2024 16:55:19 +0200 Subject: [PATCH] Add Makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..00279ec --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +help: + @echo "make help Displays help" + @echo " build Builds the image" + @echo " upload Builds and uploads the image" +build: + docker buildx build -t git.staropensource.de/staropensource/actions-docker:latest -f Dockerfile . +upload: build + docker push git.staropensource.de/staropensource/actions-docker:latest