We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f8db06c + e07d337 commit e122b49Copy full SHA for e122b49
Dockerfile
@@ -219,6 +219,11 @@ RUN bash Miniconda2-${RTD_CONDA_VERSION}-Linux-x86_64.sh -b -p /home/docs/.conda
219
ENV PATH $PATH:/home/docs/.conda/bin
220
RUN rm -f Miniconda2-${RTD_CONDA_VERSION}-Linux-x86_64.sh
221
222
+# Install Rust
223
+ENV RTD_RUST_VERSION 1.46.0
224
+RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${RTD_RUST_VERSION}
225
+ENV PATH="/home/docs/.cargo/bin:$PATH"
226
+
227
WORKDIR /
228
229
# Adding labels for external usage
0 commit comments