From e6839561befc48cd8c401d066a0b133688db3d1e Mon Sep 17 00:00:00 2001 From: Thomas Cooper Date: Tue, 5 May 2026 13:45:38 -0400 Subject: [PATCH] fix: use multi-arch index digest for eclipse-temurin:25-jre runtime stage The previous digest (5742cdb9) was the linux/amd64 single-platform manifest for eclipse-temurin:25-jre, causing arm64 multi-arch builds to fail with "Invalid ELF image for this architecture" under QEMU emulation. Replaced with the OCI image index digest (671061ae) which resolves to the correct platform-specific manifest at build time. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 394034c..f1d10f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,7 +56,7 @@ RUN sed -i \ git-proxy-java-dashboard/build/install/git-proxy-java-dashboard/bin/git-proxy-java-dashboard # ── Runtime stage ───────────────────────────────────────────────────────────── -FROM docker.io/eclipse-temurin:25-jre@sha256:5742cdb98ef117621ad75f57475ab127db04f344d9c523307cc60b9955bdd676 +FROM docker.io/eclipse-temurin:25-jre@sha256:671061ae5a8f0d6827816e15bc39d21e224c43ff96998a97cd0d3989c4d17815 WORKDIR /app