We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83b65bd + e4dfe7d commit 8bc89d1Copy full SHA for 8bc89d1
.devcontainer/Dockerfile
@@ -95,7 +95,10 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
95
&& rustup component add rls rust-analysis rust-src rustfmt clippy \
96
&& rustup toolchain install nightly \
97
&& rustup component add rustfmt --toolchain nightly \
98
- && cargo install taplo-cli cargo-nextest
+ # Use cargo-bininstall to improve multi-arch builds
99
+ && curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash \
100
+ && cargo-binstall cargo-nextest --secure \
101
+ && cargo-binstall taplo-cli --secure
102
103
# Persist bash history
104
USER root
0 commit comments