We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f325fda commit 95a9b29Copy full SHA for 95a9b29
1 file changed
.github/workflows/Dockerfile
@@ -13,6 +13,11 @@ ARG GROUP_ID=1000
13
RUN groupadd -g ${GROUP_ID} ${GROUP} && useradd -m -u ${USER_ID} -s /bin/sh -g ${GROUP} ${USER}
14
USER ${USER}:${GROUP}
15
16
+ENV PATH="/home/${USER}/.cargo/bin:${PATH}"
17
+RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
18
+RUN rustup toolchain install nightly-2024-11-29 --component llvm-tools --component rustc-dev --component rust-src
19
+RUN rustup default nightly-2024-11-29-x86_64-unknown-linux-gnu
20
+
21
RUN mkdir /home/${USER}/workspace
22
WORKDIR /home/${USER}/workspace
23
0 commit comments