Add repo and build automation

This commit is contained in:
Ethan Paul 2024-03-06 14:22:49 -05:00
parent 599970ed72
commit a944cf3878
Signed by: enpaul
GPG Key ID: 9B6D99E4CFA31867
1 changed files with 16 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
REPOSITORY = vcs.enp.one/skylab/smashing-container
SMASHING_VERSION = 1.3.6
.PHONY: help docs
# source: https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help: ## List Makefile targets
$(info Makefile documentation)
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-10s\033[0m %s\n", $$1, $$2}'
image: ## Build image
podman build . --tag $(REPOSITORY):$(SMASHING_VERSION) --build-arg "SMASHING_VERSION=$(SMASHING_VERSION)"
push: image ## Build and publish image
podman push $(REPOSITORY):$(SMASHING_VERSION)