Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/scripts/remote-image/create-cc-toolchain.sh
2867 views
1
#!/usr/bin/env bash
2
3
set -eux -o pipefail
4
5
docker build --platform linux/amd64 -t selenium-remote-build -f scripts/remote-image/Dockerfile scripts/remote-image
6
7
docker run \
8
-v $(pwd):/code \
9
--rm \
10
--platform linux/amd64 \
11
-w /code \
12
--entrypoint /code/scripts/remote-image/create-cc-toolchain-within-image.sh \
13
selenium-remote-build
14
15