Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
7ce74a63
Unverified
Commit
7ce74a63
authored
Feb 26, 2026
by
dagil-nvidia
Committed by
GitHub
Feb 26, 2026
Browse files
docs: fix rendered.Dockerfile path in container README (#6643)
Signed-off-by:
Dan Gil
<
dagil@nvidia.com
>
parent
f9d57094
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
container/README.md
container/README.md
+5
-5
No files found.
container/README.md
View file @
7ce74a63
...
...
@@ -116,7 +116,7 @@ The `run.sh` script and rendering scripts are convenience that simplify common D
```
bash
# Build runtime image
python container/render.py
--framework
vllm
--target
runtime
--output-short-filename
docker build
-t
dynamo:latest-vllm-runtime
-f
rendered.Dockerfile
.
docker build
-t
dynamo:latest-vllm-runtime
-f
container/
rendered.Dockerfile
.
# Run runtime container
container/run.sh
--image
dynamo:latest-vllm-runtime
-it
...
...
@@ -236,7 +236,7 @@ docker build --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g) -f cont
# Build TensorRT-LLM development image called dynamo:latest-trtllm
python container/render.py
--framework
=
trtllm
--target
=
runtime
--output-short-filename
--cuda-version
=
13.1
docker build
-t
dynamo:latest-trtllm-runtime
-f
rendered.Dockerfile .
docker build
-t
dynamo:latest-trtllm-runtime
-f
container/
rendered.Dockerfile .
```
### Building the Frontend Image
...
...
@@ -262,7 +262,7 @@ EPP_IMAGE="dynamo/dynamo-epp:${EPP_GIT_TAG}"
```
bash
# Build the frontend image (automatically builds EPP image as a dependency)
python container/render.py
--framework
=
dynamo
--target
=
frontend
--output-short-filename
docker build
-t
dynamo:frontend
--build-arg
EPP_IMAGE
=
${
EPP_IMAGE
}
-f
rendered.Dockerfile .
docker build
-t
dynamo:frontend
--build-arg
EPP_IMAGE
=
${
EPP_IMAGE
}
-f
container/
rendered.Dockerfile .
```
The build process automatically:
...
...
@@ -440,7 +440,7 @@ python -m dynamo.vllm --model Qwen/Qwen3-0.6B --gpu-memory-utilization 0.20 &
```
bash
# 1. Build production runtime image (runs as non-root dynamo user)
python container/render.py
--framework
=
vllm
--target
=
runtime
--output-short-filename
docker build
-t
dynamo:latest-vllm-runtime
-f
rendered.Dockerfile
.
docker build
-t
dynamo:latest-vllm-runtime
-f
container/
rendered.Dockerfile
.
# 2. Run production container as non-root dynamo user
container/run.sh
--image
dynamo:latest-vllm-runtime
--gpus
all
-v
$HOME
/.cache:/home/dynamo/.cache
...
...
@@ -450,7 +450,7 @@ container/run.sh --image dynamo:latest-vllm-runtime --gpus all -v $HOME/.cache:/
```
bash
# 1. Build dev image
python container/render.py
--framework
=
vllm
--target
=
dev
--output-short-filename
docker build
-t
dynamo:latest-vllm-dev
-f
rendered.Dockerfile
.
docker build
-t
dynamo:latest-vllm-dev
-f
container/
rendered.Dockerfile
.
# 2. Run tests with network isolation for reproducible results (no -it needed for CI)
container/run.sh
--image
dynamo:latest-vllm
--mount-workspace
--network
bridge
-v
$HOME
/.cache:/home/dynamo/.cache
--
python
-m
pytest tests/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment