From fda6d42ec7550dc3ed9e7d5739c826b3ae69b63b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Alexandre=20C=C3=B4t=C3=A9?= Date: Tue, 18 Mar 2025 20:53:04 -0400 Subject: [PATCH] Update docker.md No need for --system when updating a Python installation already managed by uv. --- docs/source/deployment/docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/deployment/docker.md b/docs/source/deployment/docker.md index 9e52a2182cfb..1f60faf40879 100644 --- a/docs/source/deployment/docker.md +++ b/docs/source/deployment/docker.md @@ -34,11 +34,11 @@ If you need to use those dependencies (having accepted the license terms), create a custom Dockerfile on top of the base image with an extra layer that installs them: ```Dockerfile -FROM vllm/vllm-openai:v0.7.3 +FROM vllm/vllm-openai:v0.8.0 # e.g. install the `audio` and `video` optional dependencies # NOTE: Make sure the version of vLLM matches the base image! -RUN uv pip install --system vllm[audio,video]==0.7.3 +RUN uv pip install vllm[audio,video]==0.8.0 ``` ::: @@ -52,7 +52,7 @@ with an extra layer that installs their code from source: ```Dockerfile FROM vllm/vllm-openai:latest -RUN uv pip install --system git+https://github.com/huggingface/transformers.git +RUN uv pip install git+https://github.com/huggingface/transformers.git ``` :::