FROM rust:1.90-bookworm WORKDIR /usr/src/app # Copy the entire workspace COPY . . # Set SQLX offline mode to avoid needing a running DB during build ENV SQLX_OFFLINE=true # Build the entire workspace in release mode # This compiles all crates in the workspace at once RUN cargo build --release --workspace