From 6547ccecbf3734fb4cc6618e8a3f15f012d09948 Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Wed, 8 Jul 2026 16:02:44 -0500 Subject: [PATCH] fix(docker): track stable Rust in the builder stage The pinned rust:1.83 predates edition2024 dependencies (clap_derive 4.6 fails to parse), breaking the image publish workflow. Track rust:1-bookworm (latest stable), matching CI's dtolnay/rust-toolchain@stable. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: Val Alexander --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79b544e..04c123e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ # ready-to-edit Compose service. # ── Builder ───────────────────────────────────────────────────────────────── -FROM rust:1.83-bookworm AS builder +FROM rust:1-bookworm AS builder WORKDIR /app # Copy the whole workspace and build the release binary. (A cold build pulls the