mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00

* updated Docker files * single Docker RUN for apt-get installs and cleanup * stylistic cleanup
6 lines
203 B
Docker
6 lines
203 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 zlib1g-dev
|
|
RUN pip install gym[atari]
|