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"]