Replies: 1 comment
-
@huangJW7 you are missing the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I downloaded some extensions in advance, these extensions are suffixed with .vsix. How can I install these extensions in the dockerfile instead of manually installing them after starting the container?
similar question
I tried like this but container start failed
USER root
FROM gitpod/openvscode-server:1.67.0
ADD vscjava.vscode-java-debug-0.43.0.vsix /home/
ENTRYPOINT ["/bin/sh","-c","exec ${OPENVSCODE_SERVER_ROOT}/bin/openvscode-server --host 0.0.0.0 --install-extension /home/vscjava.vscode-java-debug-0.43.0.vsix --without-connection-token \"${@}\"","--"]
Beta Was this translation helpful? Give feedback.
All reactions