Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,6 +7,6 @@ RUN mkdir -p /app/.config/matplotlib /app/.cache && \
|
|
7 |
RUN mkdir -p $MPLCONFIGDIR
|
8 |
COPY app.py /app
|
9 |
COPY requirements.txt /app
|
10 |
-
RUN pip install
|
11 |
EXPOSE 7860
|
12 |
CMD ["python", "app.py"]
|
|
|
7 |
RUN mkdir -p $MPLCONFIGDIR
|
8 |
COPY app.py /app
|
9 |
COPY requirements.txt /app
|
10 |
+
RUN pip install -r requirements.txt
|
11 |
EXPOSE 7860
|
12 |
CMD ["python", "app.py"]
|