From 2e32d4ee17337afd0f94634b8886b331eba158f7 Mon Sep 17 00:00:00 2001 From: Wassim Chegham Date: Fri, 14 Sep 2018 15:40:34 +0200 Subject: [PATCH] build(bazel): update BAZEL_VERSION to 0.17.1 (#25967) Bazel version '0.16.1' doesn't seem to be available anymore! Upgrade to 0.17.1 instead. PR Close #25967 --- tools/ngcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ngcontainer/Dockerfile b/tools/ngcontainer/Dockerfile index 20cce9c592203..c0fa4e1f581f4 100644 --- a/tools/ngcontainer/Dockerfile +++ b/tools/ngcontainer/Dockerfile @@ -5,7 +5,7 @@ USER root ### # Bazel install # See https://bazel.build/versions/master/docs/install-ubuntu.html#using-bazel-custom-apt-repository-recommended -RUN BAZEL_VERSION="0.16.1" \ +RUN BAZEL_VERSION="0.17.1" \ && wget -q -O - https://bazel.build/bazel-release.pub.gpg | apt-key add - \ && echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/bazel.list \ && apt-get update \