Build docker image first
Some checks failed
the build failed

This commit is contained in:
Valentin Brandl
2018-10-13 18:08:26 +02:00
parent 9ce7cb82c6
commit ac9f28dcf8
2 changed files with 23 additions and 1 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM ubuntu
ENV PANDOC_VERSION "2.3.1"
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
texlive-latex-base \
texlive-full \
latexmk \
texlive-xetex \
texlive-latex-extra \
texlive-fonts-extra \
texlive-bibtex-extra \
fontconfig \
lmodern wget build-essential graphviz
RUN wget https://github.com/jgm/pandoc/releases/download/2.3.1/pandoc-${PANDOC_VERSION}-1-amd64.deb -O /pandoc.deb \
&& dpkg -i /pandoc.deb && rm /pandoc.deb