FROM ubuntu:24.04@sha256:224a1869083a311ef3f13648a154ba79832fbef6364d31493642ca03082da254
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends libreoffice-impress poppler-utils fontconfig fonts-noto-core python3 python3-venv locales && locale-gen en_US.UTF-8 ar_SA.UTF-8 && rm -rf /var/lib/apt/lists/*
COPY requirements.txt /opt/docudeck/requirements.txt
RUN python3 -m venv /opt/docudeck/venv && /opt/docudeck/venv/bin/pip install --no-cache-dir -r /opt/docudeck/requirements.txt
COPY *.py /opt/docudeck/
ENTRYPOINT ["/opt/docudeck/venv/bin/python", "/opt/docudeck/renderer.py"]
