File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,11 @@ If you need to use those dependencies (having accepted the license terms),
34
34
create a custom Dockerfile on top of the base image with an extra layer that installs them:
35
35
36
36
``` Dockerfile
37
- FROM vllm/vllm-openai:v0.7.3
37
+ FROM vllm/vllm-openai:v0.8.0
38
38
39
39
# e.g. install the `audio` and `video` optional dependencies
40
40
# 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
42
42
```
43
43
44
44
:::
@@ -52,7 +52,7 @@ with an extra layer that installs their code from source:
52
52
``` Dockerfile
53
53
FROM vllm/vllm-openai:latest
54
54
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
56
56
```
57
57
58
58
:::
You can’t perform that action at this time.
0 commit comments