We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbd1b6f commit 4c45debCopy full SHA for 4c45deb
src/code-server/devcontainer-feature.json
@@ -23,7 +23,11 @@
23
"extensions": {
24
"type": "string",
25
"default": ""
26
- }
+ },
27
+ "workspace": {
28
+ "type": "string",
29
+ "default": ""
30
+ }
31
},
32
"entrypoint": "/usr/local/bin/code-server-entrypoint",
33
"dependsOn": {
src/code-server/install.sh
@@ -28,7 +28,7 @@ cat > /usr/local/bin/code-server-entrypoint \
#!/usr/bin/env bash
set -e
-su $_REMOTE_USER -c 'code-server --bind-addr "$HOST:$PORT" $ARGS "$CODE_SERVER_WORKSPACE"'
+su $_REMOTE_USER -c 'code-server --bind-addr "$HOST:$PORT" "$CODE_SERVER_WORKSPACE"'
EOF
34
chmod +x /usr/local/bin/code-server-entrypoint
0 commit comments