ray/docker/examples/Dockerfile

11 lines
418 B
Text
Raw Normal View History

# The examples Docker image adds dependencies needed to run the examples
FROM ray-project/deploy
# This updates numpy to 1.14 and mutes errors from other libraries
RUN conda install -y numpy
2017-01-18 23:23:34 -08:00
RUN apt-get install -y zlib1g-dev
2018-07-12 19:12:04 +02:00
RUN pip install gym[atari] opencv-python==3.2.0.8 tensorflow lz4
2018-04-04 11:08:26 -07:00
RUN pip install --upgrade git+git://github.com/hyperopt/hyperopt.git
RUN conda install pytorch-cpu torchvision-cpu -c pytorch