Created
May 12, 2021 09:58
-
-
Save shammelburg/d3bec72b8edde81bf040ab53d20fdfc6 to your computer and use it in GitHub Desktop.
.devcontainer angular configuration
This file contains hidden or 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
Show hidden characters
// 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.177.0/containers/javascript-node | |
{ | |
"name": "Node.js", | |
"build": { | |
"dockerfile": "Dockerfile", | |
// Update 'VARIANT' to pick a Node version: 12, 14, 16 | |
"args": { "VARIANT": "16" } | |
}, | |
// Set *default* container specific settings.json values on container create. | |
"settings": { | |
"terminal.integrated.shell.linux": "/bin/bash" | |
}, | |
// Add the IDs of extensions you want installed when the container is created. | |
"extensions": [ | |
"dbaeumer.vscode-eslint", | |
"angular.ng-template", | |
"johnpapa.angular2", | |
"sibiraj-s.vscode-scss-formatter", | |
"gruntfuggly.todo-tree", | |
"nrwl.angular-console", | |
"formulahendry.auto-rename-tag", | |
"coenraads.bracket-pair-colorizer-2" | |
], | |
// Use 'forwardPorts' to make a list of ports inside the container available locally. | |
// "forwardPorts": [], | |
// Use 'postCreateCommand' to run commands after the container is created. | |
// "postCreateCommand": "yarn install", | |
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | |
"remoteUser": "node" | |
} |
This file contains hidden or 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
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/javascript-node/.devcontainer/base.Dockerfile | |
# [Choice] Node.js version: 16, 14, 12 | |
ARG VARIANT="16-buster" | |
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} | |
# [Optional] Uncomment this section to install additional OS packages. | |
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | |
# && apt-get -y install --no-install-recommends <your-package-list-here> | |
# [Optional] Uncomment if you want to install an additional version of node using nvm | |
# ARG EXTRA_NODE_VERSION=10 | |
# 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 | |
RUN sudo -u node npm install -g npm @angular/cli @angular/core |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment