Added devcontainer configuration for VS Code to directly develop inside Docker container

pull/988/head
Tobias Faller 4 years ago committed by Disconnect3d
parent 84e783a6fb
commit 1cc12ad161

@ -0,0 +1,18 @@
{
"name": "pwndbg",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"workspaceFolder": "/pwndbg",
"workspaceMount": "source=${localWorkspaceFolder},target=/pwndbg,type=bind,consistency=cached",
"settings": {},
"extensions": [
"ms-python.python"
]
}
Loading…
Cancel
Save