5 lines
108 B
Docker
5 lines
108 B
Docker
FROM ubuntu
|
|
RUN export DEBIAN_FRONTEND=noninteractive; \
|
|
apt update; \
|
|
apt install -y pandoc texlive-full
|