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