binary1ne commited on
Commit
826a530
·
verified ·
1 Parent(s): d9afe4b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh \
29
- && chmod +x ~/miniconda.sh \
30
- && ~/miniconda.sh -b -p ~/miniconda \
31
- && rm ~/miniconda.sh \
32
- && conda clean -ya
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