Skip to content

Commit eea9f34

Browse files
committed
feat: node universal
1 parent b81f66d commit eea9f34

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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+
}

0 commit comments

Comments
 (0)