mirror of
https://github.com/vale981/ray
synced 2025-03-09 04:46:38 -04:00

* new path for python build * add flag * build tar using git archive * no exit from start_ray.sh * update Docker instructions * update build docker script * add git revision * fix typo * bug fixes and clarifications * mend * add objectmanager ports to docker instructions * rewording * Small updates to documentation.
10 lines
272 B
Docker
10 lines
272 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
|
|
RUN echo "tail -f /dev/null" >> scripts/start_ray.sh
|