14 lines
No EOL
421 B
Makefile
14 lines
No EOL
421 B
Makefile
.PHONY: help build publish
|
|
VERSION = 1.0.38
|
|
|
|
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:
|
|
@docker push code.headbright.be/konstantin/iamkonstantin:$(VERSION)
|
|
bump:
|
|
@bash ./bump_version.sh
|
|
upgrade: build publish |