Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,8 +10,8 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
10 |
|
11 |
COPY . .
|
12 |
|
13 |
-
RUN mkdir /code/
|
14 |
|
15 |
-
RUN chown user:user -R /code/
|
16 |
|
17 |
CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app
|
|
|
10 |
|
11 |
COPY . .
|
12 |
|
13 |
+
RUN mkdir /code/cache
|
14 |
|
15 |
+
RUN chown user:user -R /code/cache
|
16 |
|
17 |
CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app
|