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
6 changes: 3 additions & 3 deletions v3/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ ARG BASE_IMAGE=ghcr.io/pacphi/sindri:base-${DISTRO}-latest
# ==============================================================================
# Stage 1: Prepare Recipe (cargo-chef)
# ==============================================================================
FROM rust:1.95-slim-bookworm AS chef
FROM rust:1.97-slim-bookworm AS chef

RUN cargo install cargo-chef --locked

Expand All @@ -95,7 +95,7 @@ RUN cargo chef prepare --recipe-path recipe.json
# ==============================================================================
# Stage 2: Build Dependencies (cached - only rebuilds when Cargo.toml changes)
# ==============================================================================
FROM rust:1.95-slim-bookworm AS builder-deps
FROM rust:1.97-slim-bookworm AS builder-deps

RUN cargo install cargo-chef --locked

Expand All @@ -119,7 +119,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
# ==============================================================================
# Stage 3: Build Application (FAST - only rebuilds when source changes)
# ==============================================================================
FROM rust:1.95-slim-bookworm AS builder
FROM rust:1.97-slim-bookworm AS builder

ARG TARGETARCH

Expand Down