1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-08-25 07:20:11 +02:00
Stirling-PDF/Dockerfile

59 lines
1.3 KiB
Docker
Raw Normal View History

# 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
2023-01-27 19:23:40 +01:00
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 \
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
2023-01-27 19:23:40 +01:00
COPY build/libs/*.jar app.jar
# Expose the application port
2023-01-27 19:23:40 +01:00
EXPOSE 8080
# Set environment variables
2023-01-27 19:23:40 +01:00
ENV LOG_LEVEL=INFO
# Run the application
ENTRYPOINT ["java","-jar","/app.jar","-Dlogging.level=${LOG_LEVEL}"]