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
6ea08301
"lib/runtime/vscode:/vscode.git/clone" did not exist on "99e67e607a0273ebb6e0b4bf5d6f023942afbb6a"
Unverified
Commit
6ea08301
authored
May 30, 2025
by
Anant Sharma
Committed by
GitHub
May 30, 2025
Browse files
fix: copy workspace as part of ci-min stage (#1291)
parent
2f8da9ad
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
container/Dockerfile.sglang
container/Dockerfile.sglang
+3
-2
container/Dockerfile.tensorrt_llm
container/Dockerfile.tensorrt_llm
+3
-0
container/Dockerfile.vllm
container/Dockerfile.vllm
+3
-2
No files found.
container/Dockerfile.sglang
View file @
6ea08301
...
@@ -325,6 +325,9 @@ COPY --from=wheel_builder /opt/nvidia/nvda_nixl /opt/nvidia/nvda_nixl
...
@@ -325,6 +325,9 @@ COPY --from=wheel_builder /opt/nvidia/nvda_nixl /opt/nvidia/nvda_nixl
# Copy Cargo cache to avoid re-downloading dependencies
# Copy Cargo cache to avoid re-downloading dependencies
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
# Copy rest of the code
COPY . /workspace
# Build C bindings, creates lib/bindings/c/include
# Build C bindings, creates lib/bindings/c/include
RUN cd /workspace/lib/bindings/c && cargo build --release --locked
RUN cd /workspace/lib/bindings/c && cargo build --release --locked
...
@@ -365,8 +368,6 @@ ARG GENAI_PERF_VERSION
...
@@ -365,8 +368,6 @@ ARG GENAI_PERF_VERSION
# Install genai-perf for benchmarking
# Install genai-perf for benchmarking
RUN uv pip install genai-perf==$GENAI_PERF_VERSION
RUN uv pip install genai-perf==$GENAI_PERF_VERSION
COPY . /workspace
ENTRYPOINT ["/opt/nvidia/nvidia_entrypoint.sh"]
ENTRYPOINT ["/opt/nvidia/nvidia_entrypoint.sh"]
CMD []
CMD []
...
...
container/Dockerfile.tensorrt_llm
View file @
6ea08301
...
@@ -300,6 +300,9 @@ COPY --from=wheel_builder /workspace /workspace
...
@@ -300,6 +300,9 @@ COPY --from=wheel_builder /workspace /workspace
# Copy Cargo cache to avoid re-downloading dependencies
# Copy Cargo cache to avoid re-downloading dependencies
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
# Copy rest of the code
COPY . /workspace
# Build C bindings, creates lib/bindings/c/include
# Build C bindings, creates lib/bindings/c/include
RUN cd /workspace/lib/bindings/c && cargo build --release --locked
RUN cd /workspace/lib/bindings/c && cargo build --release --locked
...
...
container/Dockerfile.vllm
View file @
6ea08301
...
@@ -403,6 +403,9 @@ COPY --from=wheel_builder /opt/nvidia/nvda_nixl /opt/nvidia/nvda_nixl
...
@@ -403,6 +403,9 @@ COPY --from=wheel_builder /opt/nvidia/nvda_nixl /opt/nvidia/nvda_nixl
# Copy Cargo cache to avoid re-downloading dependencies
# Copy Cargo cache to avoid re-downloading dependencies
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
# Copy rest of the code
COPY . /workspace
# Build C bindings, creates lib/bindings/c/include
# Build C bindings, creates lib/bindings/c/include
#
#
# TODO: In theory the 'cargo build' in earlier stage covers this, we "just" need to copy the
# TODO: In theory the 'cargo build' in earlier stage covers this, we "just" need to copy the
...
@@ -447,8 +450,6 @@ ARG GENAI_PERF_VERSION
...
@@ -447,8 +450,6 @@ ARG GENAI_PERF_VERSION
# Install genai-perf for benchmarking
# Install genai-perf for benchmarking
RUN uv pip install genai-perf==$GENAI_PERF_VERSION
RUN uv pip install genai-perf==$GENAI_PERF_VERSION
COPY . /workspace
ENTRYPOINT ["/opt/nvidia/nvidia_entrypoint.sh"]
ENTRYPOINT ["/opt/nvidia/nvidia_entrypoint.sh"]
CMD []
CMD []
...
...
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