We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db73449 commit 65a4f63Copy full SHA for 65a4f63
Dockerfile
@@ -1,7 +1,8 @@
1
-FROM coder/code-server:latest
+FROM coder/code-server:4.96.2
2
3
-COPY health-server.js /health-server.js
+ENV PORT=8080
4
+EXPOSE 8080
5
-EXPOSE 8080 3000
6
-
7
-CMD sh -c "node /health-server.js & code-server --bind-addr 0.0.0.0:8080 --auth password"
+CMD ["code-server", \
+ "--bind-addr", "0.0.0.0:8080", \
8
+ "--auth", "none"]
0 commit comments