Refresh comments in dev container

This commit is contained in:
Chuck Lantz
2021-02-18 15:31:14 +00:00
committed by GitHub
parent 508263b6f0
commit 3d1cd3b58f
2 changed files with 11 additions and 9 deletions

View File

@@ -1,5 +1,7 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/javascript-node/.devcontainer/base.Dockerfile # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.159.0/containers/javascript-node/.devcontainer/base.Dockerfile
ARG VARIANT="14"
# [Choice] Node.js version: 14, 12, 10
ARG VARIANT="14-buster"
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
# [Optional] Uncomment this section to install additional OS packages. # [Optional] Uncomment this section to install additional OS packages.
@@ -11,4 +13,4 @@ FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" # RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
# [Optional] Uncomment if you want to install more global node modules # [Optional] Uncomment if you want to install more global node modules
# RUN sudo -u node npm install -g <your-package-list-here> # RUN su node -c "npm install -g <your-package-list-here>"

View File

@@ -1,11 +1,11 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/javascript-node // https://github.com/microsoft/vscode-dev-containers/tree/v0.159.0/containers/javascript-node
{ {
"name": "Node.js", "name": "Node.js",
"build": { "build": {
"dockerfile": "Dockerfile", "dockerfile": "Dockerfile",
// Update 'VARIANT' to pick a Node version: 10, 12, 14 // Update 'VARIANT' to pick a Node version: 10, 12, 14
"args": { "VARIANT": "12" } "args": { "VARIANT": "14" }
}, },
// Set *default* container specific settings.json values on container create. // Set *default* container specific settings.json values on container create.
@@ -17,13 +17,13 @@
"extensions": [ "extensions": [
"dbaeumer.vscode-eslint" "dbaeumer.vscode-eslint"
], ],
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [3000], // "forwardPorts": [3000],
// Specifies a command that should be run after the container has been created. // Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "yarn install", "postCreateCommand": "yarn install",
// Comment out the next line to run as root instead. // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node" "remoteUser": "node"
} }