-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow pre-installing VS code server and extensions in development Docker image #1718
Comments
It mentions how to workaround this here so I will close it for now. |
Actually this workaround does not really answer ny question, how can I manually install VS code with some default extensions in the Docker image using the Dockerfile? |
I also need this feature to build a instant development environment. Currently I have to manually install extensions through vscode remote ssh |
Agreed. A way to pre-install the dependencies into a container, e.g. Would be very useful |
For the VScode server binary, as it's closed source, is there an url to the binary? For which cpu architectures? Is it compiled statically (i. e. does it work with musl instead of glibc)? For extensions, if, at docker image build time, we put the vscode (non server) binary, install extensions with it, and then remove the binary, would these extensions be valid when used server side with the vscode server program? Thanks! |
code-server can install extensions via command line:
|
Nice thanks, that should solve it. I'll report back and close the issue if it fully does 👍 |
I also would appreciate a feature like Personally I think the main reasons for this approach would be:
|
There are multiple relatively easy ways to install code-server. I had a bit of trouble setting it up on alpine. In the end I use for example to pre-install USER root
RUN apk add -q --update --progress --no-cache --virtual codeserverdeps npm build-base libx11-dev libxkbfile-dev libsecret-dev python2 && \
npm install -g --unsafe-perm @google-cloud/logging@^4.5.2 code-server && \
code-server --extensions-dir /home/myuser/.vscode-server/extensions --install-extension shardulm94.trailing-spaces && \
chown -R myuser /home/myuser/.vscode-server
apk del codeserverdeps && \
rm -rf /usr/bin/code-server /usr/lib/node_modules /root/.npm /usr/local/share/.cache/yarn
USER myuser So that it doesn't increase the image size with dependencies for code-server (node, c libs, etc.). This seems to fix the extensions pre-installing part, and doesn't increase the image size really (although it takes a while for the docker image to build). If there is a faster way to install extensions that would be great (maybe using node and npm/yarn only). Now remains the vscode-server pre-install at docker build stage. I don't think Thanks! EDIT: Actually for extensions made to work for remote development container, this approach does not work as it installs the 'client side' of the extension on the remote container, so there is something missing on the container side or on the host (client) side. |
Any news on this? Installing vscode-server directly in the image would be so much simpler. |
+1 |
There are so many ways to create a multi-container backend stack for the IDE:
|
This gist allows you to preinstall the latest VS Code server commit into a container. I simply added the contents of the file as a script to the container and executed it as a RUN step. Only thing I noticed is for whatever reason my Ubuntu container balked at the The problem now is that I still can't preinstall server-side extensions.
So we're still stuck on how to preinstall extensions. Installing the code server does seem to work fine though, connecting to the SSH server from Code picked up the existing install and didn't redownload it. |
If you take that gist and add the lines
You can get it going with some Dockerfile instructions like
|
Thank you! Looks like all that happens is that if things fail to run from the PATH it assumes you're not in a VS Code terminal? Only thing I'd do to improve it is change the hash in the path export to the variable that is set in the gist to pull the latest commit:
That future-proofs the script so it'll always work with the latest VS Code server commits. |
One caveat, your host VS Code must be updated, otherwise your VS Code will install the host version also inside the container when attaching VS Code to the container, and you will endup having two different VS code versions inside the container. Here I had c35 (v1.67.2) installed from the Dockerfile as well as dfd (v1.66.2) installed by my host VS Code. Thus, my python extension installed from the Dockerfile for VS Code v1.67.2 was incompatible with my attached VS Code. Finally, I updated my host VS Code and everything worked like a charm. Thank you all! |
I created a bash script to preinstall vscode extensions inside devcontainer image using temporary vscode server with extensions list extacted from devcontainer.json file. I believe it's some sort of a hack, but I hope it would be useful. https://gist.github.com/discrimy/6c21c10995f1914cf72cd8474d4501b2 |
I use a custom built Docker image across multiple projects that contains a custom shell, OS packages and programming language related packages.
However, every time I use the container for a new project, it reinstall VS code server and all the VS code extensions described devcontainer.json which can be slow.
It would be a nice addition to allow VS code server to be pre-installed with some extensions in a Docker image, so that the boot up time for a new project would be minimal.
Thank you 👍 !
The text was updated successfully, but these errors were encountered: