Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

.dockerignore
.git/
Dockerfile
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
*.swp
*.swo

# Docker and Kubernetes generated files
.dockerignore

# Logs
*.log
log/
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN cargo build --release --bin modelexpress-server && \
cargo build --release --bin fallback_test

# Create a minimal runtime image
FROM debian:bookworm-slim
FROM nvcr.io/nvidia/base/ubuntu:jammy-20250619

WORKDIR /app

Expand All @@ -36,6 +36,9 @@ COPY --from=builder /app/target/release/test_client .
COPY --from=builder /app/target/release/test_single_client .
COPY --from=builder /app/target/release/fallback_test .

# Copy the Attribution files
COPY ATTRIBUTIONS_Rust.md .

# Expose the default port
EXPOSE 8001

Expand Down