We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112bbdc commit bc87e54Copy full SHA for bc87e54
.devcontainer/Dockerfile
@@ -22,7 +22,8 @@ RUN apt-get update \
22
make \
23
software-properties-common \
24
sudo \
25
- wget
+ wget \
26
+ musl-tools
27
28
ARG LLVM_VERSION=18
29
@@ -54,7 +55,9 @@ ARG RUST_TOOLCHAIN=1.86
54
55
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
56
&& rustup default ${RUST_TOOLCHAIN} \
57
&& rustup target add x86_64-unknown-linux-gnu \
58
+ && rustup target add x86_64-unknown-linux-musl \
59
&& rustup target add x86_64-unknown-none \
60
&& rustup toolchain add nightly-x86_64-unknown-linux-gnu \
- && cargo install just
-
61
+ && rustup toolchain add nightly-x86_64-unknown-linux-musl \
62
+ && cargo install just \
63
+ cargo install cross --locked --version 0.2.5
0 commit comments