mirror of
https://github.com/vale981/ray
synced 2025-03-07 02:51:39 -05:00
9 lines
212 B
Docker
9 lines
212 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 pip install -e .
|
|
WORKDIR /ray
|