mirror of
https://github.com/rehlds/testdemos.git
synced 2024-12-27 07:05:51 +03:00
37 lines
901 B
JSON
37 lines
901 B
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Build image",
|
||
|
"type": "docker-build",
|
||
|
"dockerBuild": {
|
||
|
"context": "${workspaceFolder}",
|
||
|
"tag": "testdemos:latest"
|
||
|
},
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "shell",
|
||
|
"label": "Run container",
|
||
|
"command": "docker run --rm -ti testdemos:latest",
|
||
|
"dependsOn": [
|
||
|
"Build image"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"inputs": [
|
||
|
{
|
||
|
"type": "pickString",
|
||
|
"id": "betaBranch",
|
||
|
"default": "public",
|
||
|
"description": "Select DepotsDownloader branch.",
|
||
|
"options": [
|
||
|
"public",
|
||
|
"steam_legacy"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|