Last active
October 5, 2021 01:40
-
-
Save dabit3/525cf3095624ec7462b290a7802c198b to your computer and use it in GitHub Desktop.
OpenVSCode Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build locally | |
# docker build . -t myvscodeapp | |
# Run locally | |
# docker run -it -p 3000:3000 myvscodeapp | |
FROM gitpod/openvscode-server:latest | |
USER root | |
ENV NODE_VERSION=14.18.0 | |
RUN apt-get update | |
RUN apt install -y curl | |
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.38.0/install.sh | bash | |
ENV NVM_DIR=./.nvm | |
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION} | |
RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION} | |
RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION} | |
ENV PATH="./.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}" | |
USER openvscode-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sudo
to the curl -o- commandRUN “echo ~/.nvm/nvm.sh use” >> /home/openscode-server/.bashrc