From 90a7c606b8d3994be0d7cf9bd70d75be3f31defa Mon Sep 17 00:00:00 2001 From: supunkamburugamuva Date: Wed, 27 Nov 2019 16:25:35 -0500 Subject: [PATCH] fixing bazel version to 1.1.0 --- docker/standalone/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/standalone/Dockerfile b/docker/standalone/Dockerfile index de25e13313..40cef4ea8b 100644 --- a/docker/standalone/Dockerfile +++ b/docker/standalone/Dockerfile @@ -35,11 +35,11 @@ RUN cd && \ #install bazel -RUN wget https://github.com/bazelbuild/bazel/releases/download/0.28.1/bazel-0.28.1-installer-linux-x86_64.sh && \ - chmod +x bazel-0.28.1-installer-linux-x86_64.sh && \ - ./bazel-0.28.1-installer-linux-x86_64.sh --user && \ +RUN wget https://github.com/bazelbuild/bazel/releases/download/1.1.0/bazel-1.1.0-installer-linux-x86_64.sh && \ + chmod +x bazel-1.1.0-installer-linux-x86_64.sh && \ + ./bazel-1.1.0-installer-linux-x86_64.sh --user && \ echo "export PATH=~/.bazel/bin:\$PATH" >> ~/.bashrc && \ - rm bazel-0.28.1-installer-linux-x86_64.sh + rm bazel-1.1.0-installer-linux-x86_64.sh ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk-amd64