NPU (wip); docker

This commit is contained in:
Dobromir Popov
2025-09-25 00:46:08 +03:00
parent d9a66026c6
commit 00ae5bd579
12 changed files with 1709 additions and 292 deletions

21
.vscode/tasks.json vendored
View File

@@ -136,6 +136,27 @@
"endsPattern": ".*Dashboard.*ready.*"
}
}
},
{
"type": "docker-build",
"label": "docker-build",
"platform": "python",
"dockerBuild": {
"tag": "gogo2:latest",
"dockerfile": "${workspaceFolder}/Dockerfile",
"context": "${workspaceFolder}",
"pull": true
}
},
{
"type": "docker-run",
"label": "docker-run: debug",
"dependsOn": [
"docker-build"
],
"python": {
"file": "run_clean_dashboard.py"
}
}
]
}