Change Rust installation command from sh to bash

This commit is contained in:
Gregory Campbell
2026-06-19 17:25:14 -04:00
committed by GitHub
parent 209772e496
commit 06c324ea3e
+1 -1
View File
@@ -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