25 lines
493 B
JSON
25 lines
493 B
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "docker-build",
|
||
|
"label": "docker-build",
|
||
|
"platform": "python",
|
||
|
"dockerBuild": {
|
||
|
"tag": "pixivcord:latest",
|
||
|
"dockerfile": "${workspaceFolder}/Dockerfile",
|
||
|
"context": "${workspaceFolder}",
|
||
|
"pull": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": "docker-run",
|
||
|
"label": "docker-run: debug",
|
||
|
"dependsOn": ["docker-build"],
|
||
|
"python": {
|
||
|
"file": "main.py"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|