fix: add rustfmt to Docker image for formatting checks

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
dave
2026-04-12 12:20:47 +00:00
parent ec6891b5ba
commit 05bdc71ebc
+2 -2
View File
@@ -9,8 +9,8 @@
FROM rust:1.90-bookworm AS base FROM rust:1.90-bookworm AS base
# Clippy is needed at runtime for acceptance gates (cargo clippy) # Clippy and rustfmt are needed at runtime for acceptance gates
RUN rustup component add clippy RUN rustup component add clippy rustfmt
# ── System deps ────────────────────────────────────────────────────── # ── System deps ──────────────────────────────────────────────────────
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \