Add Makefile

This commit is contained in:
JeremyStar™ 2024-08-18 16:55:19 +02:00
parent 7269891ddd
commit a7a47e2874
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

8
Makefile Normal file
View file

@ -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