From cf112ea195cb0c9fb04f82aee4dfcdc688075fa8 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sun, 15 Mar 2026 15:20:52 -0400 Subject: [PATCH] chore: disable incremental compilation in sandbox image Co-Authored-By: Claude Opus 4.6 (1M context) --- fabro.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/fabro.toml b/fabro.toml index d680da9a1..20c06760e 100644 --- a/fabro.toml +++ b/fabro.toml @@ -36,6 +36,7 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \ # Rust RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" +ENV CARGO_INCREMENTAL=0 # Bun RUN curl -fsSL https://bun.sh/install | bash