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