osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/38768?usp=email )
Change subject: scripts/osmo-ci-docker-rebuild: fix rpi4 failures ......................................................................
scripts/osmo-ci-docker-rebuild: fix rpi4 failures
It is no longer possible to pull the arm32 image by just using "docker build --pull". Use a separate pull command with --platform and set an env var to not use --pull with "docker build".
Related: OS#6627 Related: docker-playground I6e0a84ce7f8357611abc5da856f36d0df247de75 Change-Id: Ibf91bc098f34b43f46680d0395928e60cdd478fc --- M scripts/osmo-ci-docker-rebuild.sh 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/68/38768/1
diff --git a/scripts/osmo-ci-docker-rebuild.sh b/scripts/osmo-ci-docker-rebuild.sh index 78bf21c..1cc1165 100755 --- a/scripts/osmo-ci-docker-rebuild.sh +++ b/scripts/osmo-ci-docker-rebuild.sh @@ -10,6 +10,10 @@ "debian-bookworm-erlang" ;; arm*|aarch64) + # OS#6627: need to run a separate "docker pull" command with platform + docker pull docker.io/arm32v7/debian:bookworm --platform="linux/arm/v7" + + export NO_DOCKER_IMAGE_PULL=1 docker_images_require \ "debian-bookworm-build-arm" ;;