mirror of https://github.com/logos-co/open-law.git
40 lines
643 B
JSON
40 lines
643 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "docker-build",
|
|
"label": "docker-build",
|
|
"platform": "python",
|
|
"dockerBuild": {
|
|
"tag": "flaskapp:latest",
|
|
"dockerfile": "${workspaceFolder}/Dockerfile",
|
|
"context": "${workspaceFolder}",
|
|
"pull": true
|
|
}
|
|
},
|
|
{
|
|
"type": "docker-run",
|
|
"label": "docker-run: debug",
|
|
"dependsOn": [
|
|
"docker-build"
|
|
],
|
|
"dockerRun": {
|
|
"env": {
|
|
"FLASK_APP": "wsgi.py"
|
|
}
|
|
},
|
|
"python": {
|
|
"args": [
|
|
"run",
|
|
"--no-debugger",
|
|
"--no-reload",
|
|
"--host",
|
|
"0.0.0.0",
|
|
"--port",
|
|
"5000"
|
|
],
|
|
"module": "flask"
|
|
}
|
|
}
|
|
]
|
|
} |