Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
|
@@ -25,11 +25,11 @@ RUN apt-get update && \
|
|
| 25 |
ENV CONDA_AUTO_UPDATE_CONDA=false \
|
| 26 |
PATH=$HOME/miniconda/bin:$PATH
|
| 27 |
|
| 28 |
-
RUN curl -sLo
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
|
| 34 |
# Clone repository
|
| 35 |
RUN git clone https://github.com/browser-use/web-ui.git /web-ui
|
|
|
|
| 25 |
ENV CONDA_AUTO_UPDATE_CONDA=false \
|
| 26 |
PATH=$HOME/miniconda/bin:$PATH
|
| 27 |
|
| 28 |
+
RUN curl -sLo /tmp/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh \
|
| 29 |
+
&& chmod +x /tmp/miniconda.sh \
|
| 30 |
+
&& /tmp/miniconda.sh -b -p /home/user/miniconda \
|
| 31 |
+
&& rm /tmp/miniconda.sh \
|
| 32 |
+
&& /home/user/miniconda/bin/conda clean -ya
|
| 33 |
|
| 34 |
# Clone repository
|
| 35 |
RUN git clone https://github.com/browser-use/web-ui.git /web-ui
|