This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.10 | |
# non interactive frontend for locales | |
ENV DEBIAN_FRONTEND=noninteractive | |
# installing texlive and utils | |
RUN apt-get update && \ | |
apt-get -y install --no-install-recommends pandoc texlive texlive-latex-extra texlive-generic-extra texlive-extra-utils texlive-fonts-extra texlive-bibtex-extra biber latexmk make git procps locales curl && \ | |
rm -rf /var/lib/apt/lists/* |