Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN python -m pip install --no-cache-dir -r requirements.txt
|
|
15 |
COPY . /app
|
16 |
|
17 |
RUN mkdir -p /app/sessions && chmod 777 /app/sessions
|
18 |
-
RUN mkdir -p /app/cache && chmod 777 /app/cache
|
19 |
RUN alembic upgrade head
|
20 |
|
21 |
# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
|
|
|
15 |
COPY . /app
|
16 |
|
17 |
RUN mkdir -p /app/sessions && chmod 777 /app/sessions
|
18 |
+
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
19 |
RUN alembic upgrade head
|
20 |
|
21 |
# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
|