Skip to content

Commit

Permalink
Dockerfile.ubi: get rid of --distributed-executor-backend=mp
Browse files Browse the repository at this point in the history
this is the default when `--worker-use-ray` is not provided and
world-size > 1
  • Loading branch information
dtrifiro committed Jul 10, 2024
1 parent c624c10 commit 5d69331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ RUN umask 002 \
COPY LICENSE /licenses/vllm.md

USER 2000
ENTRYPOINT ["python3", "-m", "vllm.entrypoints.openai.api_server", "--distributed-executor-backend=mp"]
ENTRYPOINT ["python3", "-m", "vllm.entrypoints.openai.api_server"]


FROM vllm-openai as vllm-grpc-adapter
Expand All @@ -193,4 +193,4 @@ RUN --mount=type=cache,target=/root/.cache/pip \

ENV GRPC_PORT=8033
USER 2000
ENTRYPOINT ["python3", "-m", "vllm_tgis_adapter", "--distributed-executor-backend=mp"]
ENTRYPOINT ["python3", "-m", "vllm_tgis_adapter"]

0 comments on commit 5d69331

Please sign in to comment.