mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00
10 lines
232 B
Docker
10 lines
232 B
Docker
# The deploy Docker image build a self-contained Ray instance suitable
|
|
# for end users.
|
|
|
|
FROM ray-project/base-deps
|
|
ENV RAY_USE_CMAKE=1
|
|
ADD ray.tar /ray
|
|
ADD git-rev /ray/git-rev
|
|
WORKDIR /ray/python
|
|
RUN pip install -e .
|
|
WORKDIR /ray
|