[doc] update docker version (#19074)

Signed-off-by: reidliu41 <reid201711@gmail.com>
Co-authored-by: reidliu41 <reid201711@gmail.com>
This commit is contained in:
Reid
2025-06-04 03:08:21 +08:00
committed by GitHub
parent 19bdaf32b1
commit 01eee40536

View File

@ -46,11 +46,11 @@ You can add any other [engine-args][engine-args] you need after the image tag (`
create a custom Dockerfile on top of the base image with an extra layer that installs them:
```Dockerfile
FROM vllm/vllm-openai:v0.8.3
FROM vllm/vllm-openai:v0.9.0
# e.g. install the `audio` optional dependencies
# NOTE: Make sure the version of vLLM matches the base image!
RUN uv pip install --system vllm[audio]==0.8.3
RUN uv pip install --system vllm[audio]==0.9.0
```
!!! tip