pandoc-service/Dockerfile

14 lines
351 B
Docker
Raw Normal View History

2018-11-04 10:54:21 +00:00
FROM python:3-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends \
pandoc \
texlive-xetex \
texlive-latex-base \
texlive-latex-base \
texlive-fonts-recommended \
texlive-latex-extra
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt