Files
pdfsign/.devcontainer/devcontainer.json
2025-04-28 16:34:17 +02:00

20 lines
587 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"]
}
},
"forwardPorts": [],
"postCreateCommand": "go mod download",
"remoteUser": "root"
}