From 08e8b306ee2472103b8d15e0f92fbb576cf53707 Mon Sep 17 00:00:00 2001 From: Lin Yiming Date: Thu, 11 Sep 2025 16:33:14 +0800 Subject: [PATCH 1/2] fix: typo in .devcontainer/README.md from "./container/build.sh --target dev" to "./container/build.sh --target local-dev" Signed-off-by: Lin Yiming --- .devcontainer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 5209a483d0..6a192aeeab 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -94,7 +94,7 @@ Follow these steps to get your NVIDIA Dynamo development environment up and runn Build `dynamo:latest-vllm` from scratch from the source: ```bash -./container/build.sh --target dev --framework VLLM +./container/build.sh --target local-dev --framework VLLM ``` The container will be built and give certain file permissions to your local uid and gid. From 9ad408ee8d161774eb926dfdf9d7209ccfdc4667 Mon Sep 17 00:00:00 2001 From: Lin Yiming Date: Fri, 12 Sep 2025 08:24:27 +0800 Subject: [PATCH 2/2] fix: align image name in text with the build target in .devcontainer/README.md Signed-off-by: Lin Yiming --- .devcontainer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 6a192aeeab..2bce657cd1 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -91,7 +91,7 @@ Follow these steps to get your NVIDIA Dynamo development environment up and runn ### Step 1: Build the Development Container Image -Build `dynamo:latest-vllm` from scratch from the source: +Build `dynamo:latest-vllm-local-dev` from scratch from the source: ```bash ./container/build.sh --target local-dev --framework VLLM