From 3db4c57c2b7d683315a4440de404f6246e4d9f57 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Mon, 13 Nov 2023 09:27:53 +0300 Subject: [PATCH] update Makefile --- Makefile | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/Makefile b/Makefile index 51dfb1d..d3b483f 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,8 @@ -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 +IMAGE := neur0toxine/gitea-pages-server TAG := latest -else -IMAGE := prologic/pages-server -TAG := dev -endif -endif all: help @@ -21,17 +10,10 @@ all: 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)