From 7f9d5f13c9e7d55deb19051f7fd8341b2c0112af Mon Sep 17 00:00:00 2001 From: Leonard Excoffier <48970393+excoffierleonard@users.noreply.github.com> Date: Fri, 30 Jan 2026 11:44:13 -0500 Subject: [PATCH] fix: opti build --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e0232f4..d40d936 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,6 @@ # Stage 1: Prepare the Recipe ############################## FROM rust:alpine AS chef -ENV RUSTFLAGS="-C target-feature=-crt-static" -RUN apk add --no-cache tesseract-ocr-dev leptonica-dev clang-dev RUN cargo install cargo-chef WORKDIR /app COPY . . @@ -29,4 +27,4 @@ FROM alpine RUN apk add --no-cache tesseract-ocr WORKDIR /app COPY --from=builder /app/target/release/parser . -ENTRYPOINT ["./parser"] \ No newline at end of file +ENTRYPOINT ["./parser"]