aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2024-09-02 14:07:15 +0200
committerosmith <osmith@sysmocom.de>2024-09-11 08:18:44 +0000
commita749a0b4aefed649d8bc2c5012a8386a4ad838f1 (patch)
tree5afab13a0e924c3816a8c57ee5599baec432051e
parent8b2711914b63d463d6dd3e1462d18643e1bdd558 (diff)
debian-bookworm-build-arm: FROM: add arm32v7
Use the arm32v7 architecture explicitly, instead of implicitly using the same architecture as the host. That way we can use the arm32v7 image on a raspberry pi 4, even if the host system is 64 bit arm. Using 32 bit arm instead of aarch64 is needed for the osmo-trx jenkins jobs, which test -mfpu=neon and -mfpu=neon-vfpv4 build flags. Related: https://github.com/docker-library/official-images#architectures-other-than-amd64 Change-Id: I93986569a9f492237da28fbc534ac5ccd176f120
-rw-r--r--debian-bookworm-build-arm/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian-bookworm-build-arm/Dockerfile b/debian-bookworm-build-arm/Dockerfile
index 9b725a7..a6a1b21 100644
--- a/debian-bookworm-build-arm/Dockerfile
+++ b/debian-bookworm-build-arm/Dockerfile
@@ -3,7 +3,7 @@
# See master-builds.yml, gerrit-verifications.yml in osmo-ci.git.
ARG REGISTRY=docker.io
ARG UPSTREAM_DISTRO=debian:bookworm
-FROM ${REGISTRY}/${UPSTREAM_DISTRO}
+FROM ${REGISTRY}/arm32v7/${UPSTREAM_DISTRO}
# Arguments used after FROM must be specified again
ARG OSMOCOM_REPO_MIRROR="https://downloads.osmocom.org"