mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 20:55:44 +00:00
* copy bazelversion * use bazelversion * add a script and set bazel version Former-commit-id: b97d226294e08c11cf2b337b80b029d21dfe44c0
10 lines
212 B
Bash
Executable File
10 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
TAG=$1
|
|
|
|
docker build --build-arg USE_BAZEL_VERSION=$(cat .bazelversion) -t nolen777/circleci-bazelisk:$TAG -f .circleci/images/Dockerfile .
|
|
docker push nolen777/circleci-bazelisk:$TAG
|