iamkonstantin/Makefile
2024-12-16 12:06:21 +01:00

15 lines
No EOL
506 B
Makefile

.PHONY: help build publish
VERSION = 1.8.1
help:
@perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
build:
@docker build -t code.headbright.be/konstantin/iamkonstantin:$(VERSION) .
publish:
# something to try: --provenance=false
@docker buildx build -t code.headbright.be/konstantin/iamkonstantin:$(VERSION) --platform linux/arm64 --push .
bump:
@bash ./bump_version.sh
upgrade: build publish