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
|
{
"docker-run": {
"path": "frontend.py",
"script": "run",
"parser": "parser_run",
"help": "Run wpt docker image",
"virtualenv": false
},
"docker-build": {
"path": "frontend.py",
"script": "build",
"help": "Build wpt docker image",
"virtualenv": false
},
"docker-push": {
"path": "frontend.py",
"script": "push",
"parser": "parser_push",
"help": "Build and push wpt docker image",
"virtualenv": true,
"requirements": [
"requirements.txt"
]
}
}
|