File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,19 @@ At Gitpod, we've been asked a lot about how we do it. So we thought we might as
3030
3131_ Note_ : Feel free to use the ` nightly ` tag to test the latest version, i.e. ` gitpod/openvscode-server:nightly ` .
3232
33+ #### Custom Environment
34+ - If you want to add dependencies to this Docker image, here is a template to help:
35+ ```Dockerfile
36+
37+ FROM gitpod/openvscode-server:latest
38+
39+ USER root # to get permissions to install packages and such
40+ RUN # the installation process for software needed
41+ USER vscode-server # to restore permissions for the web interface
42+
43+ ```
44+ - For additional possibilities, please consult the ` Dockerfile ` for OpenVSCode Server at https://github.com/gitpod-io/openvscode-releases/
45+
3346### Linux
3447
3548- [ Download the latest release] ( https://github.com/gitpod-io/openvscode-server/releases/latest )
You can’t perform that action at this time.
0 commit comments