Skip to content

Commit dff9533

Browse files
BunsDevCopilot
andauthored
fix(docker): track stable Rust in the builder stage (#72)
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. Signed-off-by: Val Alexander <bunsthedev@gmail.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 12be5b6 commit dff9533

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# ready-to-edit Compose service.
1212

1313
# ── Builder ─────────────────────────────────────────────────────────────────
14-
FROM rust:1.83-bookworm AS builder
14+
FROM rust:1-bookworm AS builder
1515
WORKDIR /app
1616

1717
# Copy the whole workspace and build the release binary. (A cold build pulls the

0 commit comments

Comments
 (0)