-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add in vllm patch for phi3v image processing
- Loading branch information
1 parent
7f498e1
commit 2b1b632
Showing
2 changed files
with
5 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
FROM vllm/vllm-openai:v0.5.5 | ||
|
||
|
||
ENV VLLM_COMMIT=8aaf3d5347ad536de25869caa67b90e43f1ccd5b | ||
ENV VLLM_VERSION=0.5.5 | ||
ENV DO_NOT_TRACK=1 | ||
|
||
COPY --chmod=775 endpoints-entrypoint.sh entrypoint.sh | ||
|
||
RUN pip uninstall -y vllm && pip install git+https://github.com/vllm-project/vllm.git --no-cache-dir | ||
RUN pip uninstall -y vllm && \ | ||
pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/${VLLM_COMMIT}/vllm-${VLLM_VERSION}-cp38-abi3-manylinux1_x86_64.whl | ||
|
||
ENTRYPOINT ["/bin/bash", "entrypoint.sh"] | ||
CMD [""] |