From c8f203d3b45b7d00a71a47b00ae3bdd064beb6dc Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Wed, 18 Sep 2024 15:47:39 +0200 Subject: [PATCH] Do not error out when rebuilding the image --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a1de15a..5aed120 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,8 @@ arm64: manifest podman-build-arm64 test-arm64 ## Build and test the container on .PHONY: manifest manifest: ## creates the buildah manifest for multi-arch images + # The rm is needed due to bug https://www.github.com/containers/podman/issues/19757 + buildah manifest rm "${REGISTRY}/${CONTAINER}" || /bin/true buildah manifest create "${REGISTRY}/${CONTAINER}" .PHONY: podman-build