buildovanie cez task a verzia na jednom mieste

This commit is contained in:
Alojz Masár
2026-02-15 17:12:24 +01:00
parent a1628f04a3
commit b962c1be7f
7 changed files with 239 additions and 95 deletions

30
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,30 @@
{
"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": []
}
]
}