Skip to content

Commit 65693bb

Browse files
authored
Merge pull request #203 from red-hat-data-services/vllm-cuda-CVE-2025-62727
Fix starlette CVE-2025-62727
2 parents 0d4b689 + 29835bc commit 65693bb

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Dockerfile.ubi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ RUN --mount=type=bind,from=build,src=/workspace/dist,target=/workspace/dist \
138138
uv pip install \
139139
--extra-index-url="https://download.pytorch.org/whl/cu128" --index-strategy='unsafe-best-match' \
140140
"$(echo dist/*.whl)[audio,video,tensorizer]" --verbose \
141-
"https://storage.googleapis.com/neuralmagic-public-pypi/dist/flashinfer_python-0.2.5-cp38-abi3-linux_x86_64.whl"
141+
"https://storage.googleapis.com/nm-public-pypi/dist/flashinfer_python-0.2.5-cp38-abi3-linux_x86_64.whl"
142142

143143
ENV HF_HUB_OFFLINE=1 \
144144
HOME=/home/vllm \
@@ -196,4 +196,4 @@ ENV GRPC_PORT=8033 \
196196
DISABLE_LOGPROBS_DURING_SPEC_DECODING=false
197197

198198
USER 2000
199-
ENTRYPOINT ["python3", "-m", "vllm_tgis_adapter", "--uvicorn-log-level=warning"]
199+
ENTRYPOINT ["python3", "-m", "vllm_tgis_adapter", "--uvicorn-log-level=warning"]

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ transformers >= 4.51.1
1111
huggingface-hub[hf_xet] >= 0.32.0 # Required for Xet downloads.
1212
tokenizers >= 0.21.1 # Required for fast incremental detokenization.
1313
protobuf # Required by LlamaTokenizer.
14-
fastapi[standard] >= 0.115.0 # Required by FastAPI's form models in the OpenAI API server's audio transcriptions endpoint.
14+
fastapi[standard] >= 0.120.1 # Required by FastAPI's form models in the OpenAI API server's audio transcriptions endpoint.
1515
aiohttp
1616
openai >= 1.52.0 # Ensure modern openai package (ensure types module present and max_completion_tokens field support)
1717
pydantic >= 2.10

requirements/test.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ aiosignal==1.3.1
2121
# via
2222
# aiohttp
2323
# ray
24+
annotated-doc==0.0.4
25+
# via fastapi
2426
annotated-types==0.7.0
2527
# via pydantic
2628
anyio==4.6.2.post1
@@ -139,6 +141,10 @@ eval-type-backport==0.2.2
139141
# via mteb
140142
evaluate==0.4.3
141143
# via lm-eval
144+
fastapi==0.120.1
145+
# via
146+
# gpt-oss
147+
# mlflow-skinny
142148
fastparquet==2024.11.0
143149
# via genai-perf
144150
fastrlock==0.8.2
@@ -711,7 +717,7 @@ soxr==0.5.0.post1
711717
# via librosa
712718
sqlitedict==2.1.0
713719
# via lm-eval
714-
starlette==0.46.2
720+
starlette==0.49.3
715721
# via
716722
# schemathesis
717723
# starlette-testclient

0 commit comments

Comments
 (0)