mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 01:27:43 +08:00
583df08957
* 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
11 lines
304 B
Docker
11 lines
304 B
Docker
# Bulding on top of base test image, this Dockerfile adds libraries
|
|
# needed for running additional examples.
|
|
|
|
FROM amplab/ray:test-base
|
|
|
|
# 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
|