From 42429743fe7cc264df015962287cf08a965a7429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= Date: Mon, 4 Nov 2024 17:08:15 +0100 Subject: [PATCH] fix: set specific pymupdf version --- executor/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executor/Dockerfile b/executor/Dockerfile index 67a92e1..5f3265b 100644 --- a/executor/Dockerfile +++ b/executor/Dockerfile @@ -38,7 +38,7 @@ RUN apk add --no-cache git make gcc g++ musl-dev && \ FROM docker.io/alpine:${ALPINE_VERSION} AS build-pymupdf RUN apk add --no-cache gcc musl-dev linux-headers make g++ clang-dev python3 python3-dev py3-pip && \ - pip install --target /out pymupdf + pip install --target /out pymupdf==1.24.12 FROM docker.io/alpine:${ALPINE_VERSION} AS runtime RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing \