Files
go/.devcontainer/devcontainer.json

20 lines
432 B
JSON
Raw Normal View History

2019-04-16 19:54:02 -07:00
{
"name": "Go",
"dockerFile": "Dockerfile",
2019-04-19 13:16:41 -07:00
"appPort": 9000,
2019-04-16 19:54:02 -07:00
"extensions": [
"ms-vscode.go"
],
"runArgs": [
2019-08-05 23:30:46 +00:00
// Comment out the next line to run as root instead. Linux users,
// update Dockerfile with your user's UID/GID if not 1000.
"-u", "vscode",
"--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"
2019-05-28 12:59:34 -07:00
],
"settings": {
2019-06-15 09:46:11 +00:00
"go.gopath": "/go",
"go.inferGopath": true,
"go.useLanguageServer": true
2019-05-28 12:59:34 -07:00
}
2019-04-16 19:54:02 -07:00
}