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 projects/microservices-with-rust/Dockerfile-auth
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ COPY . .
RUN cargo build --release --bin auth

# Use a minimal Debian image for the runtime stage
FROM debian:13.1-slim AS runtime
FROM debian:13.3-slim AS runtime
WORKDIR /microservices-with-rust
# Copy the built binary from the builder stage
COPY --from=builder /microservices-with-rust/target/release/auth /usr/local/bin
Expand Down