From 400ce404d4c1e4a3ebb9ed40adb32847bca36cb1 Mon Sep 17 00:00:00 2001 From: bmorcos Date: Tue, 10 Mar 2026 09:46:14 -0400 Subject: [PATCH] fix: pin musl cc base images to release tag 0.2.5 Ensure builds are reproducible. --- cross/musl-aarch64.Dockerfile | 2 +- cross/musl-x86_64.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cross/musl-aarch64.Dockerfile b/cross/musl-aarch64.Dockerfile index 94b52d17..68be9ae3 100644 --- a/cross/musl-aarch64.Dockerfile +++ b/cross/musl-aarch64.Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/cross-rs/aarch64-unknown-linux-musl:main +FROM ghcr.io/cross-rs/aarch64-unknown-linux-musl:0.2.5 RUN apt-get update && apt-get install -y g++-aarch64-linux-gnu && rm -rf /var/lib/apt/lists/* diff --git a/cross/musl-x86_64.Dockerfile b/cross/musl-x86_64.Dockerfile index 455c0ca4..24c7c8bf 100644 --- a/cross/musl-x86_64.Dockerfile +++ b/cross/musl-x86_64.Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/cross-rs/x86_64-unknown-linux-musl:main +FROM ghcr.io/cross-rs/x86_64-unknown-linux-musl:0.2.5 RUN apt-get update && apt-get install -y g++-x86-64-linux-gnu && rm -rf /var/lib/apt/lists/*