File tree 3 files changed +29
-13
lines changed
3 files changed +29
-13
lines changed Load Diff This file was deleted.
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/javascript-node
1
3
{
2
4
"name" : " Node.js" ,
3
- "build" : {
4
- "dockerfile" : " Dockerfile" ,
5
- "args" : {
6
- "VARIANT" : " 18"
7
- }
5
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6
+ "image" : " mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm" ,
7
+
8
+ // Features to add to the dev container. More info: https://containers.dev/features.
9
+ "features" : {
10
+ "ghcr.io/devcontainers/features/go:1" : {}
11
+ },
12
+
13
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
14
+ // "forwardPorts": [],
15
+
16
+ // Use 'postCreateCommand' to run commands after the container is created.
17
+ "postCreateCommand" : {
18
+ "Configure Build Tools" : " sudo corepack enable npm; sudo npm install -g hereby; npm ci" ,
19
+ "Install pprof" : " go install github.com/google/pprof@latest" ,
20
+ "Install Graphviz" : " sudo apt install graphviz"
8
21
},
22
+
23
+ // Configure tool-specific properties.
9
24
"customizations" : {
10
25
"vscode" : {
11
26
"settings" : {
23
38
]
24
39
}
25
40
},
41
+
42
+ // More info: https://aka.ms/dev-containers-non-root.
26
43
"remoteUser" : " node"
27
44
}
Original file line number Diff line number Diff line change 1
1
# To get started with Dependabot version updates, you'll need to specify which
2
2
# package ecosystems to update and where the package manifests are located.
3
- # Please see the documentation for all configuration options :
3
+ # Please see the documentation for more information :
4
4
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+ # https://containers.dev/guide/dependabot
5
6
6
7
version : 2
7
8
updates :
@@ -13,3 +14,8 @@ updates:
13
14
github-actions :
14
15
patterns :
15
16
- ' *'
17
+
18
+ - package-ecosystem : ' devcontainers'
19
+ directory : ' /'
20
+ schedule :
21
+ interval : weekly
You can’t perform that action at this time.
0 commit comments