Skip to content

Commit d42d22e

Browse files
authored
Update Dockerfile
1 parent 58cbee7 commit d42d22e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
FROM quay.io/pypa/manylinux2014_x86_64
22

3+
34
# Install Rust toolchain
45
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y \
56
&& source $HOME/.cargo/env \
67
&& rustup default stable
78

9+
810
# Make sure Rust is in the PATH
911
ENV PATH=/root/.cargo/bin:$PATH
1012

13+
1114
# Verify installation
1215
RUN rustc --version && cargo --version
13-

0 commit comments

Comments
 (0)