Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM python:3.
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
|
|
@@ -8,6 +8,4 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
| 8 |
|
| 9 |
COPY . .
|
| 10 |
|
| 11 |
-
RUN mkdir ./.cache
|
| 12 |
-
|
| 13 |
CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app
|
|
|
|
| 1 |
+
FROM python:3.9
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
|
|
|
|
| 8 |
|
| 9 |
COPY . .
|
| 10 |
|
|
|
|
|
|
|
| 11 |
CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app
|