From 07ac7479b5bd769b932bba20aaa41485db89ec6c Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 24 Jan 2025 16:50:59 -0500 Subject: [PATCH] Makefile: add .push target for STANDARD and NON_STANDARD images The same .push target that MULTIARCH_IMAGES uses can be used for these images. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 8e5805a..9e90efc 100644 --- a/Makefile +++ b/Makefile @@ -368,6 +368,11 @@ $(addsuffix .push-$(HOST_ARCH),$(MULTIARCH_IMAGES) web-wasi-threads web-wasm): $ $(BUILD_DOCKER) push $(ORG)/$(basename $@):latest-$(HOST_ARCH) \ && $(BUILD_DOCKER) push $(ORG)/$(basename $@):$(TAG)-$(HOST_ARCH) +.SECONDEXPANSION: +$(addsuffix .push,$(STANDARD_IMAGES) $(NON_STANDARD_IMAGES)): $$(basename $$@) + $(BUILD_DOCKER) push $(ORG)/$(basename $@):latest \ + && $(BUILD_DOCKER) push $(ORG)/$(basename $@):$(TAG) + .SECONDEXPANSION: $(addsuffix .manifest,$(MULTIARCH_IMAGES) web-wasi-threads web-wasm): $$(basename $$@) if $(BUILDAH) manifest exists $(ORG)/$(basename $@); then \