From 2d1ca5de0fc7a9165292b9bcc4a66fbcd23c0223 Mon Sep 17 00:00:00 2001 From: Mark Date: Sun, 13 Nov 2022 11:17:04 -0800 Subject: [PATCH] Added latex dockerfile --- latex/Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 latex/Dockerfile diff --git a/latex/Dockerfile b/latex/Dockerfile new file mode 100644 index 0000000..eac2e77 --- /dev/null +++ b/latex/Dockerfile @@ -0,0 +1,22 @@ +FROM archlinux +LABEL maintiner="Mark " + +RUN pacman -Fyy --noconfirm && \ + #pacman -Syu --noconfirm && \ + pacman -Sy --noconfirm \ + # Texlive + texlive-most \ + texlive-fontsextra \ + texlive-lang \ + # Tectonic + tectonic + +RUN pacman -Sy --noconfirm \ + curl \ + git \ + openssh \ + python + +ENV HOME /data +WORKDIR /data +VOLUME /data