Sample Dockerfile with TeX Live installed

Here is a sample Dockerfile with TeX Live installed. Atlassian's Confluence Docker image is used as the base image.

FROM atlassian/confluence-server:8.5.0

ARG DEBIAN_FRONTEND=noninteractive

RUN apt update \
  && apt install -y texlive-full \
  && apt install -y poppler-utils \
  && rm -rf /var/lib/apt/lists/*

Last updated