Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -29,5 +29,5 @@ RUN echo '{"hasCompletedOnboarding": true}' > /home/coder/.claude.json
|
|
| 29 |
# Expose Hugging Face's default port
|
| 30 |
EXPOSE 7860
|
| 31 |
|
| 32 |
-
# Start VS Code Web IDE on port 7860
|
| 33 |
CMD["code-server", "--bind-addr", "0.0.0.0:7860", "--auth", "password", "/home/coder/workspace"]
|
|
|
|
| 29 |
# Expose Hugging Face's default port
|
| 30 |
EXPOSE 7860
|
| 31 |
|
| 32 |
+
# Start VS Code Web IDE on port 7860 (NOTICE THE SPACE AFTER CMD)
|
| 33 |
CMD["code-server", "--bind-addr", "0.0.0.0:7860", "--auth", "password", "/home/coder/workspace"]
|