From f4baa4b8170d22bc80873fe39138e9c015a26d42 Mon Sep 17 00:00:00 2001 From: jedarden Date: Fri, 24 Apr 2026 08:41:49 -0400 Subject: [PATCH] fix(rusher): add musl-dev to fix crti.o linker error on Alpine rust:1.85-alpine does not include musl-dev, causing the gcc linker to fail with "cannot find crti.o". Required for serde_derive and other proc-macro crates to compile. Co-Authored-By: Claude Sonnet 4.6 --- bots/rusher/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/rusher/Dockerfile b/bots/rusher/Dockerfile index 6b8caab..0f2ab2d 100644 --- a/bots/rusher/Dockerfile +++ b/bots/rusher/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY Cargo.toml Cargo.lock ./ COPY src ./src -RUN cargo build --release +RUN apk add --no-cache musl-dev && cargo build --release # Runtime stage FROM alpine:3.21