Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -30,6 +30,9 @@ RUN pwsh --version
|
|
30 |
# Verify NSIS installation
|
31 |
RUN makensis -version
|
32 |
|
|
|
|
|
|
|
33 |
# Create necessary directories and set full permissions
|
34 |
RUN mkdir -p /app/uploads /app/compile /files/programs && chmod -R 777 /app /files
|
35 |
|
|
|
30 |
# Verify NSIS installation
|
31 |
RUN makensis -version
|
32 |
|
33 |
+
# Add PowerShell to the PATH
|
34 |
+
ENV PATH="/usr/bin/pwsh:${PATH}"
|
35 |
+
|
36 |
# Create necessary directories and set full permissions
|
37 |
RUN mkdir -p /app/uploads /app/compile /files/programs && chmod -R 777 /app /files
|
38 |
|