1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-10-02 09:10:12 +02:00
Stirling-PDF/DockerfileBase

50 lines
1.4 KiB
Plaintext
Raw Normal View History

2023-05-01 22:57:48 +02:00
# Main stage
2023-12-10 23:02:30 +01:00
FROM ubuntu:latest AS base
2023-12-11 00:06:35 +01:00
# JDK for app
RUN apt-get update && \
apt-get install -y --no-install-recommends \
2023-12-11 00:06:35 +01:00
openjdk-17-jre
# Doc conversion
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libreoffice-core-nogui \
libreoffice-common \
2023-05-18 00:58:15 +02:00
libreoffice-writer-nogui \
libreoffice-calc-nogui \
libreoffice-impress-nogui \
2023-12-11 00:06:35 +01:00
python3-uno \
unoconv
# OCR MY PDF (unpaper for descew and other advanced featues)
RUN apt-get update && apt-get install -y --no-install-recommends software-properties-common gnupg2 && \
add-apt-repository ppa:alex-p/tesseract-ocr5 && apt install -y --no-install-recommends tesseract-ocr && \
apt-get update && \
apt-get install -y --no-install-recommends \
2023-12-10 23:02:30 +01:00
ghostscript \
2023-05-01 22:57:48 +02:00
python3-pip \
2023-12-10 23:02:30 +01:00
ocrmypdf \
2023-12-11 00:06:35 +01:00
unpaper && \
2023-12-10 15:09:28 +01:00
pip install --upgrade pip && \
2023-12-10 23:02:30 +01:00
pip install --no-cache-dir --upgrade ocrmypdf && \
2023-12-11 00:06:35 +01:00
pip install --no-cache-dir --upgrade pillow==10.0.1 reportlab==3.6.13 wheel==0.38.1 setuptools==65.5.1 pyjwt==2.4.0 cryptography==39.0.1
#CV
RUN pip install --no-cache-dir opencv-python-headless
# cleanup and etc
RUN rm -rf /var/lib/apt/lists/* && \
2023-05-01 22:57:48 +02:00
mkdir /usr/share/tesseract-ocr-original && \
cp -r /usr/share/tesseract-ocr/* /usr/share/tesseract-ocr-original && \
rm -rf /usr/share/tesseract-ocr
2023-12-10 23:02:30 +01:00
2023-12-10 15:09:28 +01:00