Skip to content

Commit 073d1ed

Browse files
authored
[Doc] Update tip info on using latest transformers when creating a custom Dockerfile (vllm-project#15070)
1 parent 3d44643 commit 073d1ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: docs/source/deployment/docker.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ If you need to use those dependencies (having accepted the license terms),
3434
create a custom Dockerfile on top of the base image with an extra layer that installs them:
3535

3636
```Dockerfile
37-
FROM vllm/vllm-openai:v0.7.3
37+
FROM vllm/vllm-openai:v0.8.0
3838

3939
# e.g. install the `audio` and `video` optional dependencies
4040
# NOTE: Make sure the version of vLLM matches the base image!
41-
RUN uv pip install --system vllm[audio,video]==0.7.3
41+
RUN uv pip install vllm[audio,video]==0.8.0
4242
```
4343

4444
:::
@@ -52,7 +52,7 @@ with an extra layer that installs their code from source:
5252
```Dockerfile
5353
FROM vllm/vllm-openai:latest
5454

55-
RUN uv pip install --system git+https://github.com/huggingface/transformers.git
55+
RUN uv pip install git+https://github.com/huggingface/transformers.git
5656
```
5757

5858
:::

0 commit comments

Comments
 (0)