landingpage/.devcontainer/devcontainer.json

25 lines
583 B
JSON

{
"name": "Landingpage",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "1.14",
"INSTALL_NODE": "false",
"NODE_VERSION": "lts/*"
}
},
"appPort": [ "8830:8123" ],
"postCreateCommand": "go mod download",
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"go.useGoProxyToCheckForToolUpdates": false,
"go.useLanguageServer": true,
"go.gopath": "/go",
"go.goroot": "/usr/local/go",
"go.toolsGopath": "/go/bin"
},
"extensions": [
"golang.Go"
]
}