From 2812efcad5553433b2fe04522fd806760bbc6895 Mon Sep 17 00:00:00 2001 From: Chris Doherty Date: Tue, 12 Mar 2024 08:23:00 -0500 Subject: [PATCH] Fix Makefile terminology (Docker -> Container) Signed-off-by: Chris Doherty --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5ba0211..e9de3b7 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ACTIONS := archive2disk cexec grub2disk kexec oci2disk qemuimg2disk rootio slurp GIT_COMMIT := $(shell git rev-parse HEAD) # Define container registry details. -DOCKER_REPOSITORY := quay.io/tinkerbell/actions +CONTAINER_REPOSITORY := quay.io/tinkerbell/actions include Rules.mk @@ -40,7 +40,7 @@ push: $(addprefix push-,$(ACTIONS)) .PHONY: push-% push-%: ## Push a specific action image to the registry. This recipe assumes you are already authenticated with the registry. - IMAGE_NAME=$(DOCKER_REPOSITORY)/$*:$(GIT_COMMIT) + IMAGE_NAME=$(CONTAINER_REPOSITORY)/$*:$(GIT_COMMIT) docker tag $*:latest $$IMAGE_NAME docker push $$IMAGE_NAME