Ramczy commited on
Commit
7a0ea9b
·
verified ·
1 Parent(s): 2059643

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]