Files
autotex/Dockerfile
Pavel Kirilin 88c6daceb2 Initial commit.
Signed-off-by: Pavel Kirilin <win10@list.ru>
2024-07-14 23:40:38 +02:00

22 lines
403 B
Docker

FROM python:3.12-alpine3.19
RUN apk update && apk add --no-cache \
imagemagick \
imagemagick-pdf \
texlive \
texmf-dist-langcyrillic \
texmf-dist-latexextra
# RUN apt update && apt install -y \
# imagemagick \
# texlive-latex-base \
# texlive-latex-extra \
# texlive-lang-cyrillic \
# && rm -rf /var/lib/apt/lists/*
COPY . .
RUN pip install .
CMD ["python", "-m", "autotex"]