Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -7,9 +7,9 @@ WORKDIR /app
|
|
7 |
# Create the data directory for persistent template storage
|
8 |
# This ensures the directory exists when the application starts.
|
9 |
# Permissions are usually fine by default for the user running the app.
|
10 |
-
RUN mkdir -p ./
|
11 |
|
12 |
-
chmod -R 777 ./
|
13 |
|
14 |
# Copy the requirements file into the container at /app
|
15 |
COPY requirements.txt .
|
|
|
7 |
# Create the data directory for persistent template storage
|
8 |
# This ensures the directory exists when the application starts.
|
9 |
# Permissions are usually fine by default for the user running the app.
|
10 |
+
RUN mkdir -p ./data/app_template_storage && \
|
11 |
|
12 |
+
chmod -R 777 ./data/app_template_storage
|
13 |
|
14 |
# Copy the requirements file into the container at /app
|
15 |
COPY requirements.txt .
|