Skip to content

Commit 0970da6

Browse files
committed
Add comment
Signed-off-by: DarkLight1337 <[email protected]>
1 parent 03b49d8 commit 0970da6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/deployment/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ memory to share data between processes under the hood, particularly for tensor p
3131
Optional dependencies are not included in order to avoid licensing issues (e.g. <gh-issue:8030>).
3232

3333
If you need to use those dependencies (having accepted the license terms),
34-
create a custom Dockerfile on top of the base image with an extra layer that installs them.
35-
36-
For example, to include the `audio` and `video` optional dependencies:
34+
create a custom Dockerfile on top of the base image with an extra layer that installs them:
3735

3836
```Dockerfile
37+
# You can choose other base images depending on your use case
3938
FROM vllm/vllm-openai:latest
4039

40+
# e.g. install the `audio` and `video` optional dependencies
4141
RUN uv pip install --system vllm[audio,video]
4242
```
4343

0 commit comments

Comments
 (0)