mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-05 07:20:12 +01:00
6d5dbd9729
Features ------------- Custom application name via APP_NAME docker env (These next 3 are done with OCRMyPDF) Extra features to OCR for scanned page cleanup (tilt/noise fixing) Adding OCR ability to read and output to text file Added Dedicated PDF/A conversion page Bug fixes -------------- Fix concurrent calls on Libre and OCRMyPDF jbig fix for compressions Fix for compression metadata issues due to forced conversions to PDF/A Other -------- Removal of UK US language and just using "English" due to extra development time Still issue with concurrent files for PDF to image... will fix later sorry
60 lines
1.3 KiB
Docker
60 lines
1.3 KiB
Docker
# Build jbig2enc in a separate stage
|
|
FROM debian:bullseye-slim as jbig2enc_builder
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
git \
|
|
automake \
|
|
autoconf \
|
|
libtool \
|
|
libleptonica-dev \
|
|
pkg-config \
|
|
ca-certificates \
|
|
zlib1g-dev \
|
|
make \
|
|
g++
|
|
|
|
RUN git clone https://github.com/agl/jbig2enc && \
|
|
cd jbig2enc && \
|
|
./autogen.sh && \
|
|
./configure && \
|
|
make && \
|
|
make install
|
|
|
|
# Main stage
|
|
FROM openjdk:17-jdk-slim
|
|
|
|
# Install necessary dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
libreoffice-core \
|
|
libreoffice-common \
|
|
libreoffice-writer \
|
|
libreoffice-calc \
|
|
libreoffice-impress \
|
|
python3-uno \
|
|
python3-pip \
|
|
unoconv \
|
|
pngquant \
|
|
unpaper \
|
|
ocrmypdf && \
|
|
pip install --user --upgrade ocrmypdf
|
|
|
|
# Copy the jbig2enc binary from the builder stage
|
|
COPY --from=jbig2enc_builder /usr/local/bin/jbig2 /usr/local/bin/jbig2
|
|
|
|
# Copy the application JAR file
|
|
COPY build/libs/*.jar app.jar
|
|
|
|
# Expose the application port
|
|
EXPOSE 8080
|
|
|
|
# Set environment variables
|
|
ENV APP_NAME="Stirling PDF"
|
|
|
|
# Run the application
|
|
ENTRYPOINT java -jar /app.jar
|
|
|
|
|
|
|