From 0ad880e0fe1bbfe226282df05075a8c47f569d91 Mon Sep 17 00:00:00 2001 From: eugr Date: Mon, 24 Nov 2025 11:53:38 -0800 Subject: [PATCH] Added clustering script --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33160ac..21cbe84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,6 +68,9 @@ RUN python3 use_existing_torch.py && \ # Changed -e (editable) to . (standard install) for better Docker portability RUN pip install --no-build-isolation . -v +# Set the final workdir WORKDIR $VLLM_BASE_DIR -# Default entrypoint (Optional: starts the server) -CMD ["/bin/bash"] + +# Copy clustering script +COPY run-cluster-node.sh $VLLM_BASE_DIR/ +