Files
python313/.vscode/tasks.json
2026-02-15 17:12:24 +01:00

31 lines
618 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "devcontainer: build image",
"type": "shell",
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Bypass",
"-File",
"scripts/publish-devcontainer-image.ps1"
],
"problemMatcher": []
},
{
"label": "devcontainer: build and push image",
"type": "shell",
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Bypass",
"-File",
"scripts/publish-devcontainer-image.ps1",
"-Push"
],
"problemMatcher": []
}
]
}