landingpage/.devcontainer.json

26 lines
622 B
JSON

{
"name": "Landingpage",
"image": "mcr.microsoft.com/vscode/devcontainers/go:1.19",
"appPort": [ "8830:8123" ],
"postCreateCommand": "go mod download",
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
"containerEnv": {
"DEVELOPMENT": "True"
},
"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",
"go.lintTool":"golangci-lint",
"go.lintFlags": [
"--fast"
]
},
"extensions": [
"golang.Go"
]
}