9 lines
324 B
Makefile
9 lines
324 B
Makefile
|
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
|