Dockerfile 331 B

12345678
  1. FROM debian:testing-slim
  2. RUN apt-get update
  3. RUN apt-cache depends texlive-full | grep "Depends: " | grep -v -- "-doc" | grep -v -- "-lang-" | sed 's/Depends: //' | xargs apt-get install -y --no-install-recommends
  4. RUN apt-get install -y --no-install-recommends fontconfig inkscape pandoc python3-pygments
  5. RUN useradd tex
  6. USER tex