mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

* attempt to build on travis using docker * run tests in foreground * add examples to travis tests * test from current checkout * attempt to fix docker version issues * try build with xenial * attempt docker upgrade * avoid hang on configuration files * matrix osx and linux w/ docker * restore non-test docker builds * fix typo * tuning and cleanup * add missing file * comment cleanup
14 lines
434 B
Docker
14 lines
434 B
Docker
# Bulding on top of deploy image, this Dockerfile adds libraries needed
|
|
# for running examples.
|
|
|
|
FROM amplab/ray:deploy
|
|
|
|
# Tensorflow
|
|
RUN pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
|
|
|
|
# SciPy
|
|
RUN pip install scipy
|
|
|
|
# Gym
|
|
RUN sudo apt-get -y install zlib1g-dev libjpeg-dev xvfb libav-tools xorg-dev python-opengl libsdl2-dev swig wget
|
|
RUN pip install gym[atari]
|