Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -53,6 +53,10 @@ RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39
|
|
53 |
&& rm ~/miniconda.sh \
|
54 |
&& conda clean -ya
|
55 |
|
|
|
|
|
|
|
|
|
56 |
WORKDIR $HOME/app
|
57 |
|
58 |
#######################################
|
|
|
53 |
&& rm ~/miniconda.sh \
|
54 |
&& conda clean -ya
|
55 |
|
56 |
+
# Install rust, add it to path
|
57 |
+
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
|
58 |
+
ENV PATH="/root/.cargo/bin:${PATH}"
|
59 |
+
|
60 |
WORKDIR $HOME/app
|
61 |
|
62 |
#######################################
|