mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00

* Test example applications in Jenkins. * Fix default upload_dir argument for Algorithm class. * Fix evolution strategies. * Comment out policy gradient example which doesn't seem to work. * Set --env-name for evolution strategies.
6 lines
231 B
Docker
6 lines
231 B
Docker
# The examples Docker image adds dependencies needed to run the examples
|
|
|
|
FROM ray-project/deploy
|
|
RUN conda install -y -c conda-forge tensorflow
|
|
RUN apt-get install -y zlib1g-dev
|
|
RUN pip install gym[atari] opencv-python smart_open
|