Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -28,5 +28,5 @@ WORKDIR $HOME
|
|
| 28 |
# Copy files into the container and set permissions for the 'ramm' user
|
| 29 |
COPY --chown=ramm . $HOME/server
|
| 30 |
|
| 31 |
-
# Start code-server using PM2
|
| 32 |
-
CMD ["pm2-runtime", "start", "code-server", "--", "--bind-addr", "0.0.0.0:7860", "--auth", "none"]
|
|
|
|
| 28 |
# Copy files into the container and set permissions for the 'ramm' user
|
| 29 |
COPY --chown=ramm . $HOME/server
|
| 30 |
|
| 31 |
+
# Start code-server using PM2 (Ensure correct syntax and options)
|
| 32 |
+
CMD ["pm2-runtime", "start", "code-server", "--", ".", "--bind-addr", "0.0.0.0:7860", "--auth", "none"]
|