Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|
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"]
|