From e3d0791ec158c01a2db518337ef35dcee465d8be Mon Sep 17 00:00:00 2001 From: David Allen Date: Mon, 12 Aug 2024 16:35:21 -0600 Subject: [PATCH] Changed 'docker' rule to 'container' --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 741a382..43aea4b 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ SHELL := /bin/bash .DEFAULT_GOAL := all .PHONY: all all: ## build pipeline -all: mod inst build spell lint test +all: mod inst build lint test .PHONY: ci ci: ## CI build pipeline @@ -57,8 +57,8 @@ build: ## goreleaser build go build --tags=all .PHONY: docker -docker: ## docker build -docker: +container: ## docker build +container: $(call print-target) docker build . --build-arg REGISTRY_HOST=${REGISTRY_HOST} --no-cache --pull --tag '${NAME}:${VERSION}'