birdbot/.devcontainer/devcontainer.json

29 lines
560 B
JSON
Raw Normal View History

2022-10-27 03:55:23 +02:00
{
"name": "Go",
"build": {
2023-03-31 22:21:49 +02:00
"dockerfile": "Dockerfile"
2022-10-27 03:55:23 +02:00
},
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
"customizations": {
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"golang.Go"
]
}
},
"remoteUser": "vscode",
"features": {
2023-03-31 22:21:49 +02:00
"git": "os-provided",
"ghcr.io/guiyomh/features/mage:0": "latest"
2022-10-27 03:55:23 +02:00
}
}