Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -11,6 +11,7 @@ RUN apk update && apk add --no-cache \
|
|
11 |
|
12 |
# Setup directory structure
|
13 |
RUN mkdir -p /app/{admin/{templates,static},data,uploads,client/public/images,api/logs} \
|
|
|
14 |
&& chown -R 1000:1000 /app \
|
15 |
&& chmod -R 777 /app/uploads \
|
16 |
&& chmod -R 777 /app/client/public/images \
|
|
|
11 |
|
12 |
# Setup directory structure
|
13 |
RUN mkdir -p /app/{admin/{templates,static},data,uploads,client/public/images,api/logs} \
|
14 |
+
&& mkdir -p /app/uploads/temp \
|
15 |
&& chown -R 1000:1000 /app \
|
16 |
&& chmod -R 777 /app/uploads \
|
17 |
&& chmod -R 777 /app/client/public/images \
|