File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,16 @@ ENV PATH /opt/python/cp310-cp310/bin:/opt/python/cp311-cp311/bin:/opt/python/cp3
88# Otherwise `cargo new` errors
99ENV USER root
1010ENV MATURIN_VERSION=1.12.2
11- ARG MUSL_SHA256=44be8771d0e6c6b5f82dd15662eb2957c9a3173a19a8b49966ac0542bbd40d61
11+ ARG MUSL_VERSION=1.2.5
12+ ARG MUSL_SHA256=a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4
1213ARG RUSTUP_VERSION=1.28.2
1314ARG RUSTUP_INIT_SHA256=20a06e644b0d9bd2fbdbfd52d42540bdde820ea7df86e92e533c073da0cdd43c
1415
15- RUN curl -fsSL https://www.musl-libc.org/releases/musl-1.1.20 .tar.gz -o musl.tar.gz \
16+ RUN curl -fsSL https://www.musl-libc.org/releases/musl-${MUSL_VERSION} .tar.gz -o musl.tar.gz \
1617 && echo "${MUSL_SHA256} musl.tar.gz" | sha256sum -c - \
1718 && tar -xzf musl.tar.gz \
1819 && rm -f musl.tar.gz \
19- && cd musl-1.1.20 \
20+ && cd musl-${MUSL_VERSION} \
2021 && ./configure \
2122 && make install -j$(expr $(nproc) \+ 1) \
2223 && cd .. \
You can’t perform that action at this time.
0 commit comments