mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 10:01:11 +08:00
8bb87a4f6b
* updated Docker files * single Docker RUN for apt-get installs and cleanup * stylistic cleanup
9 lines
198 B
Docker
9 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
|