Add dynamic docker file configuration
This commit is contained in:
18
.devcontainer/devcontainer.template.json
Normal file
18
.devcontainer/devcontainer.template.json
Normal 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}"
|
||||
}
|
||||
Reference in New Issue
Block a user