From 1bf6bdd6eb13325bb83b8f0952ec2754f8a24521 Mon Sep 17 00:00:00 2001 From: Devin Bidwell Date: Fri, 5 Dec 2025 03:08:42 -0700 Subject: [PATCH] More Dockerfile fixes --- Dockerfile.build | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index 7f017fc..811f8b0 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -11,9 +11,10 @@ RUN wget --progress=dot:giga https://dot.net/v1/dotnet-install.sh -O dotnet-inst && ./dotnet-install.sh --channel 8.0 --install-dir /usr/share/dotnet \ && ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet -RUN rustup target add x86_64-pc-windows-gnu \ - && rustup target add x86_64-unknown-linux-gnu \ - && rustup component add rustfmt clippy +RUN rustup toolchain install stable \ + && rustup component add --toolchain stable rustfmt clippy \ + && rustup target add --toolchain stable x86_64-pc-windows-gnu \ + && rustup target add --toolchain stable x86_64-unknown-linux-gnu WORKDIR /app