From a4ed3922977f67fd08b5ab6465b9f1c441220565 Mon Sep 17 00:00:00 2001 From: Florent Castelli Date: Thu, 6 Nov 2025 01:36:23 +0000 Subject: [PATCH] Use a Github mirror for Musl The upstream repository seems to be flaky and builds have failed as it was not always available, so we switch to a mirror hosted on Github. Fixes #46 --- linux-ubuntu-musl-2404.pkr.js/linux-ubuntu-musl-2404.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-ubuntu-musl-2404.pkr.js/linux-ubuntu-musl-2404.Dockerfile b/linux-ubuntu-musl-2404.pkr.js/linux-ubuntu-musl-2404.Dockerfile index 8656de4..0155338 100644 --- a/linux-ubuntu-musl-2404.pkr.js/linux-ubuntu-musl-2404.Dockerfile +++ b/linux-ubuntu-musl-2404.pkr.js/linux-ubuntu-musl-2404.Dockerfile @@ -34,7 +34,7 @@ RUN mkdir /sources WORKDIR /sources RUN git clone https://github.com/llvm/llvm-project.git --recurse-submodules --shallow-submodules --depth=1 --branch ${LLVM_VERSION} -RUN git clone https://git.musl-libc.org/git/musl --recurse-submodules --shallow-submodules --depth=1 --branch ${MUSL_VERSION} +RUN git clone https://github.com/nxxm/musl.git --recurse-submodules --shallow-submodules --depth=1 --branch ${MUSL_VERSION} RUN git clone https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git --depth=1 --branch=${LINUX_VERSION} # Install the musl headers and libs, built with host clang