github.com/ungtb10d/cli/v2@v2.0.0-20221110210412-98537dd9d6a1/.devcontainer/devcontainer.json (about)

     1  {
     2  	"image": "mcr.microsoft.com/devcontainers/go:1.18",
     3  	"features": {
     4  		"ghcr.io/devcontainers/features/sshd:1": {}
     5  	},
     6  	"remoteUser": "vscode",
     7  	"customizations": {
     8  		"vscode": {
     9  			"extensions": [
    10  				"golang.go"
    11  			],
    12  			"settings": {
    13  				"go.toolsManagement.checkForUpdates": "local",
    14  				"go.useLanguageServer": true,
    15  				"go.gopath": "/go"
    16  			}
    17  		}
    18  	},
    19  	"runArgs": [
    20  		"--cap-add=SYS_PTRACE",
    21  		"--security-opt",
    22  		"seccomp=unconfined"
    23  	]
    24  }