birdbot/.devcontainer/devcontainer.json

29 lines
560 B
JSON

{
"name": "Go",
"build": {
"dockerfile": "Dockerfile"
},
"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": {
"git": "os-provided",
"ghcr.io/guiyomh/features/mage:0": "latest"
}
}