1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "type": "docker-build",
- "label": "docker-build",
- "platform": "python",
- "dockerBuild": {
- "tag": "fastapi:latest",
- "dockerfile": "${workspaceFolder}/Dockerfile",
- "context": "${workspaceFolder}",
- "pull": true
- }
- },
- {
- "type": "docker-run",
- "label": "docker-run: debug",
- "dependsOn": ["docker-build"],
- "dockerRun": {
- "env": {
- "FLASK_APP": "aa"
- }
- },
- "python": {
- "args": [
- "run",
- "--no-debugger",
- "--no-reload",
- "--host",
- "0.0.0.0",
- "--port",
- "5002"
- ],
- "module": "flask"
- }
- }
- ]
- }
|