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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Optimized for production deployment with minimal image size

# Stage 1: Build dependencies (cached layer)
FROM rust:1.85-slim-bookworm AS chef
FROM rust:1.93-slim-bookworm AS chef

# Install build dependencies needed for cargo-chef cook and rdkafka
RUN apt-get update && apt-get install -y \
Expand Down Expand Up @@ -33,7 +33,7 @@ COPY --from=planner /app/Cargo.lock Cargo.lock
RUN cargo chef cook --release --recipe-path recipe.json

# Stage 4: Build application
FROM rust:1.85-slim-bookworm AS builder
FROM rust:1.93-slim-bookworm AS builder

# Install build dependencies
RUN apt-get update && apt-get install -y \
Expand Down
Loading