ソースを参照

Merge pull request #898 from tensorflow/upgrade-bazeldockerfile

Upgrade Bazel in syntaxnet Dockerfile
gunan 8 年 前
コミット
6eeef03c7d
1 ファイル変更3 行追加3 行削除
  1. 3 3
      syntaxnet/Dockerfile

+ 3 - 3
syntaxnet/Dockerfile

@@ -10,9 +10,9 @@ RUN mkdir -p $SYNTAXNETDIR \
     && pip install -U protobuf==3.0.0 \
     && pip install asciitree \
     && pip install numpy \
-    && wget https://github.com/bazelbuild/bazel/releases/download/0.3.1/bazel-0.3.1-installer-linux-x86_64.sh \
-    && chmod +x bazel-0.3.1-installer-linux-x86_64.sh \
-    && ./bazel-0.3.1-installer-linux-x86_64.sh --user \
+    && wget https://github.com/bazelbuild/bazel/releases/download/0.4.3/bazel-0.4.3-installer-linux-x86_64.sh \
+    && chmod +x bazel-0.4.3-installer-linux-x86_64.sh \
+    && ./bazel-0.4.3-installer-linux-x86_64.sh --user \
     && git clone --recursive https://github.com/tensorflow/models.git \
     && cd $SYNTAXNETDIR/models/syntaxnet/tensorflow \
     && echo "\n\n\n\n" | ./configure \