mirror of https://github.com/pwndbg/pwndbg.git
Added devcontainer configuration for VS Code to directly develop inside Docker container
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…
Reference in new issue