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.
This commit is contained in:
parent
c49ae7b783
commit
cb2d88c948
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,9 @@ for container in "$BASEDIR"/Containerfile.*; do
|
||||||
done
|
done
|
||||||
|
|
||||||
# extra container tags and pushes for things that we don’t build, but need
|
# 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 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
|
podman tag ghcr.io/catthehacker/ubuntu:act-24.04 git.ctbk.de/infra/ubuntu:act-24.04
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue