diff --git a/dockerfiles/pdflatex/2021/Dockerfile b/dockerfiles/pdflatex/2021/Dockerfile new file mode 100644 index 0000000..33bd43c --- /dev/null +++ b/dockerfiles/pdflatex/2021/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:22.04 +ARG DEBIAN_FRONTEND=noninteractive + +RUN apt-get update +# 2021 is the current version of texlive on apt-get as of 10/2024 +RUN apt-get install -qqy texlive-latex-base=2021.20220204-1 texlive-plain-generic=2021.20220204-1 texlive-latex-extra=2021.20220204-1 +RUN apt-get install -qqy python3.10 pip + +RUN pip install PyPDF2==3.0.1 \ No newline at end of file diff --git a/dockerfiles/pdflatex/metadata.json b/dockerfiles/pdflatex/metadata.json new file mode 100644 index 0000000..7af5c67 --- /dev/null +++ b/dockerfiles/pdflatex/metadata.json @@ -0,0 +1,4 @@ +{ + "pushLatest": true, + "latestTag": "pdflatex" +} \ No newline at end of file