31 lines
619 B
JSON
31 lines
619 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": []
|
|
}
|
|
]
|
|
}
|