fix: specific TensorFlow version to the latest 1.x(1.13.1) since it is incompatible with TensorFlow 2.x API (#675)

* fix: specific TensorFlow version to the latest 1.x(1.13.1) since it is incompatible with TensorFlow 2.x API

* fix: pin TensorFlow version to 1.12.0 as the main non-Docker code uses that version
This commit is contained in:
qiwihui
2019-03-21 23:55:15 +08:00
committed by torzdf
parent f63cda6200
commit 2ad33ca265
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM tensorflow/tensorflow:latest-py3
FROM tensorflow/tensorflow:1.12.0-py3
RUN apt-get update -qq -y \
&& apt-get install -y libsm6 libxrender1 libxext-dev python3-tk\

View File

@@ -1,4 +1,4 @@
FROM tensorflow/tensorflow:latest-gpu-py3
FROM tensorflow/tensorflow:1.12.0-gpu-py3
RUN apt-get update -qq -y \
&& apt-get install -y libsm6 libxrender1 libxext-dev python3-tk\