From 891ae8aa13d1879e863a3d9c104764ad19ee73e0 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Thu, 16 May 2024 01:25:42 -0400 Subject: [PATCH] fix ray install (#1630) --- docker/Dockerfile-cloud-no-tmux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-cloud-no-tmux b/docker/Dockerfile-cloud-no-tmux index dffecdc25..efeffef8e 100644 --- a/docker/Dockerfile-cloud-no-tmux +++ b/docker/Dockerfile-cloud-no-tmux @@ -16,7 +16,7 @@ COPY scripts/motd /etc/motd RUN pip install jupyterlab notebook ipywidgets && \ jupyter lab clean RUN apt install --yes --no-install-recommends openssh-server tmux sudo && \ - pip3 install -U --no-cache-dir grpcio ray==2.9.3 && \ + pip3 install -U --no-cache-dir grpcio ray[default]==2.9.3 && \ mkdir -p ~/.ssh && \ chmod 700 ~/.ssh && \ printf "[ ! -z \"\$TERM\" -a -r /etc/motd ] && cat /etc/motd\n" >> ~/.bashrc && \