iamkonstantin/Makefile

11 lines
343 B
Makefile
Raw Normal View History

2024-03-12 18:14:57 +01:00
.PHONY: help build publish
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:
2024-03-29 18:30:57 +01:00
@docker build -t code.headbright.be/konstantin/iamkonstantin:1.0.24 .
2024-03-12 18:14:57 +01:00
publish:
2024-03-29 18:30:57 +01:00
@docker push code.headbright.be/konstantin/iamkonstantin:1.0.24