mirror of
https://github.com/Microsoft/vscode
synced 2024-10-28 14:18:54 +00:00
14 lines
501 B
Docker
14 lines
501 B
Docker
FROM mcr.microsoft.com/devcontainers/typescript-node:18-bookworm
|
|
|
|
ADD install-vscode.sh /root/
|
|
RUN /root/install-vscode.sh
|
|
|
|
RUN git config --system codespaces-theme.hide-status 1
|
|
|
|
USER node
|
|
RUN npm install -g node-gyp
|
|
RUN YARN_CACHE="$(yarn cache dir)" && rm -rf "$YARN_CACHE" && ln -s /vscode-dev/yarn-cache "$YARN_CACHE"
|
|
RUN echo 'export DISPLAY="${DISPLAY:-:1}"' | tee -a ~/.bashrc >> ~/.zshrc
|
|
|
|
USER root
|
|
CMD chown node:node /vscode-dev && sudo -u node mkdir -p /vscode-dev/yarn-cache && sleep inf
|