ray/docker/deploy/Dockerfile
Johann Schleier-Smith 8bb87a4f6b updated Docker files (#171)
* updated Docker files

* single Docker RUN for apt-get installs and cleanup

* stylistic cleanup
2016-12-31 17:21:33 -08:00

8 lines
198 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
WORKDIR /ray/lib/python
RUN python setup.py install
WORKDIR /ray