ray/docker/kuberay-autoscaler/Dockerfile
Philipp Moritz fbc51d6d0e
[Kuberay] Ray Autoscaler integration with Kuberay (MVP) (#21086)
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).
2022-01-19 19:42:17 -08:00

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