Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Dockerfile instructions for optional dependencies and dev transformers #13699

Merged
merged 6 commits into from
Feb 22, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use explicit version
Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
  • Loading branch information
DarkLight1337 committed Feb 22, 2025
commit db8654a4ba6a09d092e8efc8ed9971dd600ae884
5 changes: 3 additions & 2 deletions docs/source/deployment/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ create a custom Dockerfile on top of the base image with an extra layer that ins

```Dockerfile
# You can choose other base images depending on your use case
FROM vllm/vllm-openai:latest
FROM vllm/vllm-openai:0.7.3

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

:::
Expand Down