ar08 commited on
Commit
388b946
·
verified ·
1 Parent(s): 460a371

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -64,7 +64,7 @@ EXPOSE 8080
64
  USER coder
65
  WORKDIR /home/coder/genz
66
 
67
- # Start code-server with authentication and specified password
68
- CMD ["code-server", "--bind-addr", "0.0.0.0:7860", "--auth", "password", "--password", "aritraroy08"]
69
 
70
  # End of Dockerfile
 
64
  USER coder
65
  WORKDIR /home/coder/genz
66
 
67
+ # Start code-server with authentication
68
+ CMD ["sh", "-c", "code-server --bind-addr 0.0.0.0:7860 --auth password"]
69
 
70
  # End of Dockerfile