{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "docker-build", | |
"label": "docker-build", | |
"platform": "python", | |
"dockerBuild": { | |
"tag": "storygenerationdocker:latest", | |
"dockerfile": "${workspaceFolder}/Dockerfile", | |
"context": "${workspaceFolder}", | |
"pull": true | |
} | |
}, | |
{ | |
"type": "docker-run", | |
"label": "docker-run: debug", | |
"dependsOn": [ | |
"docker-build" | |
], | |
"python": { | |
"file": "app.py" | |
} | |
} | |
] | |
} |