Add dynamic docker file configuration

This commit is contained in:
Andrew Johnson
2025-10-07 06:51:46 +02:00
parent 095ffb467c
commit c56ffd185f
9 changed files with 533 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
{
"name": "Python GUI Devcontainer - ${PLATFORM}",
"build": {
"dockerfile": "Dockerfile${DOCKERFILE_SUFFIX}"
},
"forwardPorts": [5901],
"runArgs": ${RUN_ARGS},
"mounts": ${MOUNTS},
"overrideCommand": false,
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
]
}
},
"postCreateCommand": "${POST_CREATE_COMMAND}"
}