[BugFix] Use correct python3 binary in Docker.ppc64le entrypoint (#9492)

Signed-off-by: Varad Ahirwadkar <varad.ahirwadkar1@ibm.com>
This commit is contained in:
Varad Ahirwadkar 2024-10-21 23:13:02 +05:30 committed by GitHub
parent 8ca8954841
commit ec6bd6c4c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,4 +33,4 @@ WORKDIR /workspace/
RUN ln -s /workspace/vllm/tests && ln -s /workspace/vllm/examples && ln -s /workspace/vllm/benchmarks RUN ln -s /workspace/vllm/tests && ln -s /workspace/vllm/examples && ln -s /workspace/vllm/benchmarks
ENTRYPOINT ["python3", "-m", "vllm.entrypoints.openai.api_server"] ENTRYPOINT ["/opt/conda/bin/python3", "-m", "vllm.entrypoints.openai.api_server"]