Skip to content
Snippets Groups Projects
Commit 5101b3f7 authored by Matt Kwong's avatar Matt Kwong
Browse files

Pin Bazel version to 0.4.4 in Dockerfile

parent 2dfc3af4
No related branches found
No related tags found
No related merge requests found
...@@ -72,6 +72,13 @@ RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add - ...@@ -72,6 +72,13 @@ RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
RUN apt-get -y update RUN apt-get -y update
RUN apt-get -y install bazel RUN apt-get -y install bazel
# Pin Bazel to 0.4.4
# Installing Bazel via apt-get first is required before installing 0.4.4 to
# allow gRPC to build without errors. See https://github.com/grpc/grpc/issues/10553
RUN curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel-0.4.4-installer-linux-x86_64.sh
RUN chmod +x ./bazel-0.4.4-installer-linux-x86_64.sh
RUN ./bazel-0.4.4-installer-linux-x86_64.sh
RUN mkdir -p /var/local/jenkins RUN mkdir -p /var/local/jenkins
# Define the default command. # Define the default command.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment