mirror of
https://github.com/vale981/ray
synced 2025-03-08 11:31:40 -05:00

* updated Docker files * single Docker RUN for apt-get installs and cleanup * stylistic cleanup
8 lines
198 B
Docker
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
|