From 06c324ea3ee12396d7992ddb3dd055b4bd605fa2 Mon Sep 17 00:00:00 2001 From: Gregory Campbell <15807475+gjcampbell777@users.noreply.github.com> Date: Fri, 19 Jun 2026 17:25:14 -0400 Subject: [PATCH] Change Rust installation command from sh to bash --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bbd5c37..e522534 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ENV CARGO_HOME=/usr/local/cargo ENV PATH="/usr/local/cargo/bin:${PATH}" # Install Rust (it will now install to the paths above) -RUN curl --proto '=https' --tlsv1.2 -sSf https://rustup.rs | sh -s -- -y +RUN curl --proto '=https' --tlsv1.2 -sSf https://rustup.rs | bash -s -- -y # Grant read and execute permissions to all users RUN chmod -R 755 /usr/local/cargo /usr/local/rustup