ray/docker/deploy/Dockerfile
Robert Nishihara 1a682e2807 Enable starting and stopping ray with "ray start" and "ray stop". (#628)
* Install start_ray and stop_ray scripts in setup.py.

* Update documentation.

* Fix docker tests.

* Implement stop_ray script in python.

* Fix linting.
2017-06-02 20:17:48 +00:00

9 lines
219 B
Docker

# The deploy Docker image build a self-contained Ray instance suitable
# for end users.
FROM ray-project/base-deps
ADD ray.tar /ray
ADD git-rev /ray/git-rev
WORKDIR /ray/python
RUN python setup.py install
WORKDIR /ray