Added devcontainer config and docker with development environment

This commit is contained in:
2025-03-31 21:48:22 +02:00
parent 9cd5b759a9
commit bb0450ad69
2 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"name": "Qt 6.8.0 Development Container",
"build": {
"dockerfile": "Dockerfile",
"context": "."
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"ms-vscode.cmake-tools",
"ms-vscode.cpptools",
"ms-vscode.makefile-tools",
"androidtool.android",
"ms-azuretools.vscode-docker"
]
}
},
"forwardPorts": [8080],
"mounts": [
"source=${localWorkspaceFolder},target=/workspace,type=bind"
]
}