From 2a9c2cef76a0dd8d736378e512d8034e21892745 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Thu, 16 Jan 2025 08:25:16 +0000 Subject: [PATCH] fix: add cargo components to toolchain stable-x86_64-unknown-linux-musl --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 126dadf..e301952 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN cargo binstall -y \ # should be a no-op if the FROM line is up-to-date RUN rustup update stable -RUN rustup component add rustfmt clippy +RUN rustup component add --toolchain stable-x86_64-unknown-linux-musl rustfmt clippy # install nightly RUN rustup install nightly && rustup component add --toolchain nightly rustfmt clippy