feat: add Docker image build script and update tasks configuration

This commit is contained in:
2026-01-31 19:09:35 +01:00
parent e690a649e8
commit 2e69f0d5ef
2 changed files with 53 additions and 0 deletions

9
.vscode/tasks.json vendored
View File

@@ -22,6 +22,15 @@
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "Build Docker Image",
"type": "shell",
"command": "${workspaceFolder}\\.venv\\Scripts\\python.exe",
"args": [
"${workspaceFolder}/docker/build_image.py"
],
"problemMatcher": []
}
]
}