-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdevcontainer.json
More file actions
34 lines (34 loc) · 963 Bytes
/
devcontainer.json
File metadata and controls
34 lines (34 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"initializeCommand": "docker build -f .devcontainer/base/Dockerfile -t amp-devcontainer-base:local .",
"build": {
"dockerfile": "Dockerfile",
"context": "../..",
"args": {
"BASE_IMAGE": "amp-devcontainer-base:local"
}
},
"remoteEnv": {
"CONTAINER_FLAVOR": "rust"
},
"customizations": {
"vscode": {
"settings": {
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
},
"extensions": [
"github.copilot@1.388.0",
"github.vscode-github-actions@0.31.5",
"github.vscode-pull-request-github@0.144.0",
"jetmartin.bats@0.1.10",
"kherring.bats-test-runner@0.1.3",
"mhutchie.git-graph@1.30.0",
"ms-azuretools.vscode-docker@2.0.0",
"rust-lang.rust-analyzer@0.3.2896",
"sonarsource.sonarlint-vscode@5.2.3",
"tamasfe.even-better-toml@0.21.2",
"usernamehw.errorlens@3.28.0"
]
}
}
}