From 4c2d16455e4ba307d6e9cef0886eecf68578bdc8 Mon Sep 17 00:00:00 2001 From: Ray Milkey Date: Wed, 19 Sep 2018 14:38:08 -0700 Subject: [PATCH] Bump up docker image build to bazel version 0.17.1 Change-Id: I29b749aa46b31d87fcd879e058a92b4e5733a64d --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 710f4f039c..c83b2fbfe4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY . /src/onos/ # build problems WORKDIR /src/onos RUN apt-get update && apt-get install -y zip python git bzip2 build-essential && \ - curl -L -o bazel.sh https://github.com/bazelbuild/bazel/releases/download/0.15.2/bazel-0.15.2-installer-linux-x86_64.sh && \ + curl -L -o bazel.sh https://github.com/bazelbuild/bazel/releases/download/0.17.1/bazel-0.17.1-installer-linux-x86_64.sh && \ chmod +x bazel.sh && \ ./bazel.sh --user && \ export ONOS_ROOT=/src/onos && \