With this upgrade our codebase adopts the stricter handling of `os/exec` command lookup in it that it doesn't allow shelling out to a command in the current directory.
24 lines
447 B
JSON
24 lines
447 B
JSON
{
|
|
"image": "mcr.microsoft.com/devcontainers/go:1.19",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/sshd:1": {}
|
|
},
|
|
"remoteUser": "vscode",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"golang.go"
|
|
],
|
|
"settings": {
|
|
"go.toolsManagement.checkForUpdates": "local",
|
|
"go.useLanguageServer": true,
|
|
"go.gopath": "/go"
|
|
}
|
|
}
|
|
},
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt",
|
|
"seccomp=unconfined"
|
|
]
|
|
}
|