43 lines
984 B
Makefile
43 lines
984 B
Makefile
-include environ.inc
|
|
|
|
BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD)
|
|
|
|
ifeq ($(LOCAL), 1)
|
|
IMAGE := r.mills.io/prologic/pages-server
|
|
TAG := dev
|
|
else
|
|
ifeq ($(BRANCH), main)
|
|
IMAGE := prologic/pages-server
|
|
TAG := latest
|
|
else
|
|
IMAGE := prologic/pages-server
|
|
TAG := dev
|
|
endif
|
|
endif
|
|
|
|
all: help
|
|
|
|
.PHONY: help
|
|
help: ## Show this help message
|
|
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
|
|
|
|
ifeq ($(PUBLISH), 1)
|
|
.PHONY: image
|
|
image: ## Build the Docker image
|
|
@docker buildx build \
|
|
--platform linux/amd64,linux/arm64 --push -t $(IMAGE):$(TAG) .
|
|
else
|
|
.PHONY: image
|
|
image:
|
|
@docker build \
|
|
-t $(IMAGE):$(TAG) .
|
|
endif
|
|
|
|
.PHONY: clean
|
|
clean: ## Remove untracked files (excluding Git ignored files)
|
|
@git clean -f -d
|
|
|
|
.PHONY: clean-all
|
|
clean-all: ## Remove untracked and Git ignored files
|
|
@git clean -f -d -s
|