1LINUX_VERSION=v2 2 3build_linux_container: 4 docker build -t gcr.io/skia-public/rbe_linux:${LINUX_VERSION} ./gce_linux_container/ 5 6push_linux_container: build_linux_container 7 docker push gcr.io/skia-public/rbe_linux:${LINUX_VERSION} 8 9generate_linux_config: 10 # If you do not have the rbe_configs_gen executable, see 11 # https://github.com/bazelbuild/bazel-toolchains/releases/tag/v5.1.2 12 rbe_configs_gen \ 13 --bazel_version=5.0.0 \ 14 --toolchain_container=gcr.io/skia-public/rbe_linux@sha256:654139e5cecb163f80a7d18e2b2da6c758ebe6325d2d9c41d9facf58e1b3f799 \ 15 --output_src_root=../.. \ 16 --output_config_path=bazel/rbe/gce_linux \ 17 --exec_os=linux \ 18 --target_os=linux