Skip to content
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
Added ls commands to list what is in the /workspace
  • Loading branch information
dmitry-tokarev-nv committed Aug 4, 2025
commit f30d35f9b9f234b30e936b11cc924f65037a223f
6 changes: 4 additions & 2 deletions container/Dockerfile.tensorrt_llm
Original file line number Diff line number Diff line change
Expand Up @@ -313,14 +313,16 @@ RUN uv build --wheel --out-dir /workspace/dist && \
FROM build AS dev

WORKDIR /workspace

RUN ls -lah /workspace
COPY --from=wheel_builder /workspace /workspace
RUN ls -lah /workspace
# Copy Cargo cache to avoid re-downloading dependencies
COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME

# Copy rest of the code
RUN ls -lah /workspace
COPY . /workspace

RUN ls -lah /workspace
# Package the bindings
RUN mkdir -p /opt/dynamo/bindings/wheels && \
mkdir /opt/dynamo/bindings/lib && \
Expand Down
Loading