aboutsummaryrefslogtreecommitdiffstats
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-05 18:36:33 +0530
committerLibravatar GitHub <noreply@github.com>2021-05-05 13:06:33 +0000
commit2cc06bb7d7e817354f88ab3ba73123718bf566cb (patch)
tree3156054385f7bca365474139113687e858af853c /.devcontainer/devcontainer.json
parentMinify images (#480) (diff)
downloadferdium-recipes-2cc06bb7d7e817354f88ab3ba73123718bf566cb.tar.gz
ferdium-recipes-2cc06bb7d7e817354f88ab3ba73123718bf566cb.tar.zst
ferdium-recipes-2cc06bb7d7e817354f88ab3ba73123718bf566cb.zip
Upgraded nodejs to '14.16.1' (#482)
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json22
1 files changed, 13 insertions, 9 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 1c169bf..d7bd89b 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,12 +1,16 @@
1// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: 1// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2// https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/javascript-node-12 2// https://github.com/microsoft/vscode-dev-containers/tree/v0.174.0/containers/javascript-node
3{ 3{
4 "name": "Node.js 12", 4 "name": "Node.js",
5 "dockerFile": "Dockerfile", 5 "build": {
6 "dockerfile": "Dockerfile",
7 // Update 'VARIANT' to pick a Node version: 10, 12, 14
8 "args": { "VARIANT": "14" }
9 },
6 10
7 // Set *default* container specific settings.json values on container create. 11 // Set *default* container specific settings.json values on container create.
8 "settings": { 12 "settings": {
9 "terminal.integrated.shell.linux": "/bin/bash" 13 "terminal.integrated.defaultProfile.linux": "/bin/bash"
10 }, 14 },
11 15
12 // Add the IDs of extensions you want installed when the container is created. 16 // Add the IDs of extensions you want installed when the container is created.
@@ -18,8 +22,8 @@
18 // "forwardPorts": [], 22 // "forwardPorts": [],
19 23
20 // Use 'postCreateCommand' to run commands after the container is created. 24 // Use 'postCreateCommand' to run commands after the container is created.
21 // "postCreateCommand": "npm install" 25 // "postCreateCommand": "npm install",
22 26
23 // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. 27 // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
24 // "remoteUser": "node" 28 "remoteUser": "node"
25} 29}