Skip to content

Commit 01b9e05

Browse files
authored
⬆️ Increase upper bound of vllm to 0.9.2 (#88)
* ⬆️ Bump vllm upper bound support Signed-off-by: Evaline Ju <[email protected]> * 🔧 Bump base UBI Signed-off-by: Evaline Ju <[email protected]> --------- Signed-off-by: Evaline Ju <[email protected]>
1 parent 55a5dd0 commit 01b9e05

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# NOTE: The image generated out of this file should only be used in conjunction with a
55
# compatible vllm image, otherwise it will throw error.
66

7-
ARG BASE_UBI_IMAGE_TAG=9.5
7+
ARG BASE_UBI_IMAGE_TAG=9.6
88
ARG PYTHON_VERSION=3.12
99

1010
### Build layer
11-
FROM quay.io/modh/vllm:rhoai-2.23-cuda as build
11+
FROM quay.io/vllm/vllm-cuda:0.9.2.2 as build
1212

1313
ARG PYTHON_VERSION
1414
ENV PYTHON_VERSION=${PYTHON_VERSION}
@@ -52,4 +52,4 @@ ENTRYPOINT ["/bin/bash", "-c", "cp -r /app/target_packages/* ${SHARED_PACKAGE_P
5252
### Release Layer (with vllm-tgis-adapter)
5353
FROM release as release_tgis_adapter
5454

55-
COPY --from=build_tgis_adapter --chown=1001 /app/target_packages /app/target_packages
55+
COPY --from=build_tgis_adapter --chown=1001 /app/target_packages /app/target_packages

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies = ["orjson>=3.10.16,<3.11"]
1616
vllm-tgis-adapter = ["vllm-tgis-adapter>=0.7.0,<0.7.2"]
1717
vllm = [
1818
"transformers<4.54.0", # vllm <= 0.10.0 has issues with higher transformers versions, fixed later in https://github.com/vllm-project/vllm/pull/20921
19-
"vllm @ git+https://github.com/vllm-project/[email protected].0 ; sys_platform == 'darwin'",
20-
"vllm>=0.7.2,<0.9.1 ; sys_platform != 'darwin'",
19+
"vllm @ git+https://github.com/vllm-project/[email protected].2 ; sys_platform == 'darwin'",
20+
"vllm>=0.7.2,<0.10.0 ; sys_platform != 'darwin'",
2121
]
2222

2323
## Dev Extra Sets ##

0 commit comments

Comments
 (0)