From 1bbdb9d01f488464dd3365d5950eb7222050e75c Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Thu, 3 Oct 2019 12:26:17 +0200 Subject: [PATCH] docker: manifest push: Ignore missing images Certain containers might lack one of the images that should be part of the multiarch tag, so create the manifest without them and do not bail in such scenarios. Change-Id: Ia1094d1dfb1c998d7eda5e68c751d75ab3966c5b Signed-off-by: Alexandru Avadanii --- docker/build.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/build.mk b/docker/build.mk index 2f7d398..6ecaaf5 100644 --- a/docker/build.mk +++ b/docker/build.mk @@ -60,6 +60,7 @@ $(MTOOL): .PHONY: .push_manifest .push_manifest: $(MTOOL) $(MTOOL) push from-args \ + --ignore-missing \ --platforms linux/amd64,linux/arm64 \ --template $(REGISTRY)/$(NAME):$(TAG_PRE)-ARCH-$(TAG_VER) \ --target $(REGISTRY)/$(NAME):$(TAG_PRE)-$(TAG_VER) -- 2.16.6