From 6f2f581cc7ff0b2684a13bc603f9745f011bb520 Mon Sep 17 00:00:00 2001 From: Leonard Excoffier <48970393+excoffierleonard@users.noreply.github.com> Date: Mon, 2 Feb 2026 19:01:48 -0500 Subject: [PATCH] fix: specify alpine version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d40d936..b71f6d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN cargo build --release ############################## # Stage 3: Final Image ############################## -FROM alpine +FROM alpine:3 RUN apk add --no-cache tesseract-ocr WORKDIR /app COPY --from=builder /app/target/release/parser .