Skip to content

Commit 2e342ef

Browse files
pcmoritzericl
authored andcommitted
Fix tensorflow-1.14 installation in jenkins (#5007)
1 parent a7f84b5 commit 2e342ef

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docker/examples/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ FROM ray-project/deploy
55
# This updates numpy to 1.14 and mutes errors from other libraries
66
RUN conda install -y numpy
77
RUN apt-get install -y zlib1g-dev
8+
# The following is needed to support TensorFlow 1.14
9+
RUN conda remove -y --force wrapt
810
RUN pip install gym[atari] opencv-python-headless tensorflow lz4 keras pytest-timeout smart_open
911
RUN pip install -U h5py # Mutes FutureWarnings
1012
RUN pip install --upgrade bayesian-optimization

docker/tune_test/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ FROM ray-project/base-deps
77
RUN pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev1-cp27-cp27mu-manylinux1_x86_64.whl boto3
88
# We install this after the latest wheels -- this should not override the latest wheels.
99
RUN apt-get install -y zlib1g-dev
10+
# The following is needed to support TensorFlow 1.14
11+
RUN conda remove -y --force wrapt
1012
RUN pip install gym[atari]==0.10.11 opencv-python-headless tensorflow lz4 keras pytest-timeout smart_open
1113
RUN pip install --upgrade bayesian-optimization
1214
RUN pip install --upgrade git+git://github.com/hyperopt/hyperopt.git

0 commit comments

Comments
 (0)