Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +0 -5
Dockerfile
CHANGED
|
@@ -1,13 +1,8 @@
|
|
| 1 |
FROM python:3.9-slim
|
| 2 |
-
|
| 3 |
WORKDIR /app
|
| 4 |
-
|
| 5 |
COPY requirements.txt .
|
| 6 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
-
|
| 8 |
COPY app.py .
|
| 9 |
COPY static/ ./static/
|
| 10 |
-
|
| 11 |
EXPOSE 7860
|
| 12 |
-
|
| 13 |
CMD ["python", "app.py"]
|
|
|
|
| 1 |
FROM python:3.9-slim
|
|
|
|
| 2 |
WORKDIR /app
|
|
|
|
| 3 |
COPY requirements.txt .
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 5 |
COPY app.py .
|
| 6 |
COPY static/ ./static/
|
|
|
|
| 7 |
EXPOSE 7860
|
|
|
|
| 8 |
CMD ["python", "app.py"]
|