mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

This is a minimum viable product for Ray Autoscaler integration with Kuberay. It is not ready for prime time/general use, but should be enough for interested parties to get started (see the documentation in kuberay.md).
8 lines
306 B
Docker
8 lines
306 B
Docker
FROM rayproject/ray:nightly
|
|
ARG WHEEL_PATH
|
|
RUN $HOME/anaconda3/bin/pip uninstall -y ray
|
|
COPY $WHEEL_PATH .
|
|
RUN $HOME/anaconda3/bin/pip --no-cache-dir install "$WHEEL_PATH"[all]
|
|
|
|
COPY run_autoscaler.py /home/ray/run_autoscaler.py
|
|
COPY run_autoscaler_with_retries.py /home/ray/run_autoscaler_with_retries.py
|