Spaces:
Sleeping
Sleeping
Commit
·
a083f8b
1
Parent(s):
566a2b3
dockerfile - adding cache folder
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -8,8 +8,6 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
8 |
|
9 |
COPY . .
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
RUN mkdir test
|
14 |
|
15 |
CMD ["gunicorn", "-w", "5", "main:app"]
|
|
|
8 |
|
9 |
COPY . .
|
10 |
|
11 |
+
RUN mkdir -p test && chmod 777 test
|
|
|
|
|
12 |
|
13 |
CMD ["gunicorn", "-w", "5", "main:app"]
|