|
15 | 15 | "install-webdriver-ts": "cd webdriver-ts && npm install && npm run compile",
|
16 | 16 | "install-webdriver-ts-results": "cd webdriver-ts-results && npm install",
|
17 | 17 | "install-local": "npm run install-webdriver-ts && npm run install-webdriver-ts-results",
|
18 |
| - "docker-build-image": "podman build -t js-framework-benchmark-ubuntu -f Dockerfile .", |
19 |
| - "docker-start": "cross-env-shell podman run --rm -d -p 8080:8080 --name js-framework-benchmark --ipc=host -v /dev/shm:/dev/shm --volume ${INIT_CWD}:/src --volume js-framework-benchmark:/build js-framework-benchmark-ubuntu", |
20 |
| - "docker-stop": "podman stop js-framework-benchmark", |
21 |
| - "docker-sync": "podman exec -it js-framework-benchmark rsync -avC --exclude /index.html --exclude /framework/**/dist --exclude /webdriver-ts*/dist --exclude node_modules --exclude /webdriver-ts/results*/ /src/ /build/", |
22 |
| - "docker-sync-package-lock-back": "podman exec -it js-framework-benchmark bash sync-package-lock.sh", |
23 |
| - "docker-build-frameworks": "npm run docker-sync && podman exec -it js-framework-benchmark npm install && podman exec -it js-framework-benchmark node rebuild-all.js --ci --docker --", |
24 |
| - "docker-build-frameworks-non-ci": "npm run docker-sync && podman exec -it js-framework-benchmark npm install && podman exec -it js-framework-benchmark node rebuild-all.js --docker --", |
| 18 | + "docker-build-image": "docker build -t js-framework-benchmark-ubuntu -f Dockerfile .", |
| 19 | + "docker-start": "cross-env-shell docker run --rm -d -p 8080:8080 --name js-framework-benchmark --ipc=host -v /dev/shm:/dev/shm --volume ${INIT_CWD}:/src --volume js-framework-benchmark:/build js-framework-benchmark-ubuntu", |
| 20 | + "docker-stop": "docker stop js-framework-benchmark", |
| 21 | + "docker-sync": "docker exec -it js-framework-benchmark rsync -avC --exclude /index.html --exclude /framework/**/dist --exclude /webdriver-ts*/dist --exclude node_modules --exclude /webdriver-ts/results*/ /src/ /build/", |
| 22 | + "docker-sync-package-lock-back": "docker exec -it js-framework-benchmark bash sync-package-lock.sh", |
| 23 | + "docker-build-frameworks": "npm run docker-sync && docker exec -it js-framework-benchmark npm install && docker exec -it js-framework-benchmark node rebuild-all.js --ci --docker --", |
| 24 | + "docker-build-frameworks-non-ci": "npm run docker-sync && docker exec -it js-framework-benchmark npm install && docker exec -it js-framework-benchmark node rebuild-all.js --docker --", |
25 | 25 |
|
26 | 26 | "rebuild": "node rebuild-single.js --",
|
27 | 27 | "rebuild-ci": "node rebuild-single.js -- --ci",
|
28 | 28 | "docker-rebuild": "node rebuild-single.js -- --docker",
|
29 | 29 | "docker-rebuild-ci": "node rebuild-single.js -- --ci --docker",
|
30 | 30 |
|
31 |
| - "docker-shell": "podman exec -it js-framework-benchmark /bin/bash" |
| 31 | + "docker-shell": "docker exec -it js-framework-benchmark /bin/bash" |
32 | 32 | },
|
33 | 33 | "keywords": [
|
34 | 34 | "benchmark",
|
|
0 commit comments