Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ 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 ./app/data
|
11 |
|
12 |
chmod -R 777 ./app/data
|
13 |
|
|
|
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 ./app/data && \
|
11 |
|
12 |
chmod -R 777 ./app/data
|
13 |
|