This commit is contained in:
2025-04-22 19:21:08 +02:00
parent 4656994d9d
commit 121f340730
11 changed files with 372 additions and 46 deletions

View File

@@ -1,12 +1,15 @@
FROM golang:1.24.1
FROM golang:1.24.2
WORKDIR /app
RUN apt-get update && apt-get install -y \
imagemagick \
ffmpeg \
poppler-utils && \
rm -rf /var/lib/apt/lists/*
poppler-utils \
ocrmypdf \
qpdf \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . .