Add bump version, add robots.txt

This commit is contained in:
Konstantin 2024-03-29 18:43:38 +01:00
parent e55aeb5c71
commit 6bd0df1f34
4 changed files with 57 additions and 3 deletions

View file

@ -1,10 +1,14 @@
.PHONY: help build publish
VERSION = 1.0.27
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:1.0.24 .
@docker build -t code.headbright.be/konstantin/iamkonstantin:$(VERSION) .
publish:
@docker push code.headbright.be/konstantin/iamkonstantin:1.0.24
@docker push code.headbright.be/konstantin/iamkonstantin:$(VERSION)
bump:
@bash ./bump_version.sh
upgrade: bump build publish