-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtasks.json
41 lines (41 loc) · 971 Bytes
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"version": "2.0.0",
"tasks": [
{
"type": "docker-build",
"label": "docker-build",
"platform": "python",
"dockerBuild": {
"tag": "opentransitmetrics:flask-dev",
"dockerfile": "${workspaceFolder}/Dockerfile",
"context": "${workspaceFolder}",
"pull": true,
"target": "flask-dev",
"customOptions": "${input:dockerBuildm1}",
}
},
{
"type": "docker-run",
"label": "docker-run: save_routes.py",
"dependsOn": [
"docker-build"
],
"python": {
"args": ["--s3", "--timetables", "--scheduled-stats", "--agency=trimet"],
"file": "save_routes.py"
}
}
],
"inputs": [
{
"id": "dockerBuildm1",
"type": "pickString",
"description": "Select '--platform linux/amd64' to build for Macs with an ARM CPU",
"default": "",
"options": [
"--platform linux/amd64",
""
]
}
]
}