File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
templates/node/.devcontainer Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+ // README at: https://github.com/devcontainers/templates/tree/main/src/universal
3+ {
4+ "name" : " Node Universal" ,
5+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+ // "image": "mcr.microsoft.com/devcontainers/universal:2-linux",
7+ "image" : " mcr.microsoft.com/devcontainers/base:jammy" ,
8+ "features" : {
9+ "ghcr.io/devcontainers/features/common-utils" : {},
10+ "ghcr.io/devcontainers/features/node:1" : {
11+ "nodeGypDependencies" : true ,
12+ "version" : " lts" ,
13+ "nvmVersion" : " latest"
14+ },
15+ "ghcr.io/devcontainers/features/git:1" : {
16+ "version" : " latest" ,
17+ "ppa" : " false"
18+ },
19+ "ghcr.io/devcontainers/features/git-lfs:1" : {
20+ "version" : " latest"
21+ },
22+ "ghcr.io/devcontainers-extra/features/cloudflared:1" : {
23+ "version" : " latest"
24+ }
25+ },
26+ "runArgs" : [],
27+ "customizations" : {
28+ "vscode" : {
29+ "extensions" : []
30+ }
31+ }
32+
33+ // Features to add to the dev container. More info: https://containers.dev/features.
34+ // "features": {},
35+
36+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
37+ // "forwardPorts": [],
38+
39+ // Use 'postCreateCommand' to run commands after the container is created.
40+ // "postCreateCommand": "uname -a",
41+
42+ // Configure tool-specific properties.
43+ // "customizations": {},
44+
45+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
46+ // "remoteUser": "root"
47+ }
You can’t perform that action at this time.
0 commit comments