From 4c976375c5eacb377e869a675a327ee74296d382 Mon Sep 17 00:00:00 2001 From: eugr Date: Mon, 24 Nov 2025 21:13:06 -0800 Subject: [PATCH] Added missing dependencies; added dashboard support for Ray clusters --- Dockerfile | 4 ++++ run-cluster-node.sh | 1 + 2 files changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2b54350..6ef5f3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,3 +89,7 @@ WORKDIR $VLLM_BASE_DIR # Copy clustering script COPY run-cluster-node.sh $VLLM_BASE_DIR/ RUN chmod +x $VLLM_BASE_DIR/run-cluster-node.sh + +# Install additional modules for Ray dashboard support +RUN pip install ray[default] + diff --git a/run-cluster-node.sh b/run-cluster-node.sh index 8e24b60..a18991e 100755 --- a/run-cluster-node.sh +++ b/run-cluster-node.sh @@ -107,6 +107,7 @@ if [ "${NODE_TYPE}" == "head" ]; then echo "Starting Ray HEAD node..." exec ray start --block --head --port 6379 \ --node-ip-address "$VLLM_HOST_IP" \ + --include-dashboard=True \ --dashboard-host "0.0.0.0" \ --dashboard-port 8265 else