Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -36,6 +36,8 @@ ENV PATH="/usr/bin/pwsh:${PATH}"
|
|
36 |
# Create necessary directories and set full permissions
|
37 |
RUN mkdir -p /app/uploads /app/compile /files/programs && chmod -R 777 /app /files
|
38 |
|
|
|
|
|
39 |
# Grant full permissions to /app/pe/
|
40 |
RUN mkdir -p /app/pe && chmod -R 777 /app/pe
|
41 |
|
|
|
36 |
# Create necessary directories and set full permissions
|
37 |
RUN mkdir -p /app/uploads /app/compile /files/programs && chmod -R 777 /app /files
|
38 |
|
39 |
+
RUN chown -R root:root /app/pe && chmod -R 777 /app/pe
|
40 |
+
|
41 |
# Grant full permissions to /app/pe/
|
42 |
RUN mkdir -p /app/pe && chmod -R 777 /app/pe
|
43 |
|