actions-docker/Makefile

11 lines
496 B
Makefile
Raw Normal View History

2024-08-18 16:55:19 +02:00
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 .
2024-08-18 16:55:28 +02:00
docker buildx build -t git.staropensource.de/staropensource/actions-docker:java -f Dockerfile.java .
2024-08-18 16:55:19 +02:00
upload: build
docker push git.staropensource.de/staropensource/actions-docker:latest
2024-08-18 16:55:28 +02:00
docker push git.staropensource.de/staropensource/actions-docker:java