devcontainer.json with Dockerfile (#170969)

This commit is contained in:
Christof Marti
2022-12-09 16:18:11 +00:00
parent 96b43cf417
commit 7f18b19cc0
4 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"name": "VS Code",
"build": {
"dockerfile": "Dockerfile"
},
"overrideCommand": false,
"privileged": true,
"mounts": [
{
"source": "vscode-dev",
"target": "/vscode-dev",
"type": "volume"
}
],
"customizations": {
"vscode": {
"extensions": [
"mutantdino.resourcemonitor"
]
}
}
}