From cb2d88c948110c413e3404a85bc8a20be5e7ff5a Mon Sep 17 00:00:00 2001 From: Lilian Date: Mon, 27 Jan 2025 21:22:27 +0100 Subject: [PATCH] Pull container images before re-tagging them in build script Podman (and also docker I think) requires the image to be present locally in order to be able to retag them. If that is not the case an error will occur. --- build-containers.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-containers.sh b/build-containers.sh index acf2759..912f3e6 100755 --- a/build-containers.sh +++ b/build-containers.sh @@ -10,6 +10,9 @@ for container in "$BASEDIR"/Containerfile.*; do done # extra container tags and pushes for things that we don’t build, but need +podman pull data.forgejo.org/oci/alpine:latest +podman pull ghcr.io/catthehacker/ubuntu:act-24.04 + podman tag data.forgejo.org/oci/alpine:latest git.ctbk.de/infra/alpine:latest podman tag ghcr.io/catthehacker/ubuntu:act-24.04 git.ctbk.de/infra/ubuntu:act-24.04