Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -18,6 +18,9 @@ RUN chmod -R 777 /app/.cache
|
|
18 |
# Give write permissions to the /app directory
|
19 |
RUN chmod -R 777 /app
|
20 |
|
|
|
|
|
|
|
21 |
# Create /app/logs directory and set permissions for logging
|
22 |
RUN mkdir -p /app/logs && chmod -R 777 /app/logs
|
23 |
|
|
|
18 |
# Give write permissions to the /app directory
|
19 |
RUN chmod -R 777 /app
|
20 |
|
21 |
+
# Give write permissions to the /data directory
|
22 |
+
RUN chmod -R 777 /app/data
|
23 |
+
|
24 |
# Create /app/logs directory and set permissions for logging
|
25 |
RUN mkdir -p /app/logs && chmod -R 777 /app/logs
|
26 |
|