Skip to content
Open
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
2 changes: 1 addition & 1 deletion rust/the-basics/cargo-chef.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COPY . .
RUN cargo build --release --bin [rust-app]

# We do not need the Rust toolchain to run the binary!
FROM debian:bookworm-slim AS runtime
FROM debian:trixie-slim AS runtime
WORKDIR /app
COPY --from=builder /app/target/release/[rust-app] /usr/local/bin
ENTRYPOINT ["/usr/local/bin/[rust-app]"]
Expand Down