From 6190da078c18dfe7947aef79368c765936b9d373 Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Mon, 23 Sep 2024 17:48:08 +0200 Subject: [PATCH] Workaround podman issue This is needed due to bug https://www.github.com/containers/podman/issues/19757 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 524bb85..667e2eb 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,8 @@ arm64: manifest podman-build-amd64 test-amd64 ## 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