Initial DevContainer

This commit is contained in:
Valentin Popov 2025-05-05 22:50:41 +00:00
parent 32c09af582
commit 94957c12d2
No known key found for this signature in database
GPG Key ID: AE3CE523DAAA8401

View File

@ -0,0 +1,24 @@
{
"image": "mcr.microsoft.com/devcontainers/go:latest",
"forwardPorts": [
8080
],
"portsAttributes": {
"8080": {
"label": "Application",
"onAutoForward": "notify"
}
},
"customizations": {
"vscode": {
"extensions": [
"golang.go"
]
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
]
}