23 lines
660 B
JSON
23 lines
660 B
JSON
{
|
|
"name": "Go PDF Sign",
|
|
"dockerFile": "Dockerfile",
|
|
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"go.toolsManagement.checkForUpdates": "local",
|
|
"go.useLanguageServer": true,
|
|
"go.gopath": "/go"
|
|
},
|
|
"extensions": ["golang.go"]
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"TMPDIR": "/workspaces/pdfsign/tmp"
|
|
},
|
|
"forwardPorts": [],
|
|
"postCreateCommand": "go mod download",
|
|
"remoteUser": "root"
|
|
}
|