25 lines
561 B
JSON
25 lines
561 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "docker-build",
|
|
"label": "docker-build",
|
|
"platform": "python",
|
|
"dockerBuild": {
|
|
"tag": "pytest:latest",
|
|
"dockerfile": "${workspaceFolder}/Dockerfile",
|
|
"context": "${workspaceFolder}",
|
|
"pull": true
|
|
}
|
|
},
|
|
{
|
|
"type": "docker-run",
|
|
"label": "docker-run: debug",
|
|
"dependsOn": ["docker-build"],
|
|
"python": {
|
|
"args": ["main:app", "--host", "0.0.0.0", "--port", "8000"],
|
|
"module": "uvicorn"
|
|
}
|
|
}
|
|
]
|
|
}
|