From 4d24f0e769a3b15c0e888ea719f2846aab3ed8a2 Mon Sep 17 00:00:00 2001 From: yejianwu Date: Wed, 6 Jun 2018 19:06:40 +0800 Subject: [PATCH] update bazel version in Dockerfile --- docker/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 084ccda1..00b10833 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -42,7 +42,7 @@ RUN echo "startup --batch" >>/etc/bazel.bazelrc RUN echo "build --spawn_strategy=standalone --genrule_strategy=standalone" \ >>/etc/bazel.bazelrc # Install the most recent bazel release. -ENV BAZEL_VERSION 0.7.0 +ENV BAZEL_VERSION 0.13.1 WORKDIR / RUN mkdir /bazel && \ cd /bazel && \ @@ -84,7 +84,8 @@ RUN apt-get install -y --no-install-recommends \ net-tools \ inetutils-ping \ screen \ - android-tools-adb + android-tools-adb \ + htop # Download NDK in different versions RUN cd /opt/ && \ @@ -107,7 +108,7 @@ ENV PATH ${PATH}:${ANDROID_NDK_HOME} # Install tools RUN pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com setuptools -RUN pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com tensorflow==1.7.0 \ +RUN pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com tensorflow==1.8.0 \ numpy>=1.14.0 \ scipy \ jinja2 \ -- GitLab