From eef0f3ee7d4e1f0a3a5453c0205c9545335ed5a6 Mon Sep 17 00:00:00 2001 From: Timmy Date: Sat, 21 Mar 2026 21:43:09 +0000 Subject: [PATCH] Add clippy to Docker image Acceptance gates run cargo clippy but the component wasn't installed in the build stage. Agents were doing real work then failing every gate check because clippy wasn't available. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7149e5e..32c09ab 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -9,6 +9,9 @@ FROM rust:1.90-bookworm AS base +# Clippy is needed at runtime for acceptance gates (cargo clippy) +RUN rustup component add clippy + # ── System deps ────────────────────────────────────────────────────── RUN apt-get update && apt-get install -y --no-install-recommends \ git \