thejagstudio commited on
Commit
d910f8d
·
verified ·
1 Parent(s): dc595cb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -54,7 +54,7 @@ RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39
54
 
55
  WORKDIR $HOME/app
56
  COPY requirements.txt ./
57
- RUN conda install --yes --file requirements.txt
58
  COPY . .
59
  EXPOSE 7860
60
  CMD ["python","./manage.py","runserver","0.0.0.0:7860"]
 
54
 
55
  WORKDIR $HOME/app
56
  COPY requirements.txt ./
57
+ RUN pip install --yes --file requirements.txt
58
  COPY . .
59
  EXPOSE 7860
60
  CMD ["python","./manage.py","runserver","0.0.0.0:7860"]