This folder contains artifacts for building a docker container which includes all necessary language toolchains (C++, Java, Python, Go and libraries). This container is the recommended toolchain container for Remote caching and execution with Bazel.
Download and install the Google Cloud SDK, which includes the gcloud command-line tool.
Create a new Google Cloud Platform project from the Cloud Console or use an existing one.
Initialize the Cloud SDK.
gcloud init
You will need a valid project ID to build the toolchain-container.
You can build a toolchain-container with debian8 as the base container by running:
container/debian8-clang-fully-loaded/build.sh -p your-project-id -c debian8-clang-fully-loaded -t latest
Congratulations! Your docker container is now available in Container Registry
gcr.io/your-project-id/debian8-clang-fully-loaded:latest
You can pull the built container to local
gcloud docker -- pull gcr.io/your-project-id/debian8-clang-fully-loaded:latest
You can also build debian8-clang-fully-loaded container locally to for a quick test. You would need Bazel and Docker installed.
Run the following command:
container/debian8-clang-fully-loaded/build.sh -l
You docker container is now available locally and you can try it out by running:
docker run -it debian8-clang-fully-loaded:latest