Skip to content

Commit ca9f553

Browse files
authored
[Feature:Autograding] Add pdflatex image (#54)
### What is the current behavior? Creates a docker file for pdflatex for more_autograding_examples/test_notes_upload/ Closes Submitty/Submitty#10940
1 parent fc29263 commit ca9f553

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

dockerfiles/pdflatex/2021/Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM ubuntu:22.04
2+
ARG DEBIAN_FRONTEND=noninteractive
3+
4+
RUN apt-get update
5+
# 2021 is the current version of texlive on apt-get as of 10/2024
6+
RUN apt-get install -qqy texlive-latex-base=2021.20220204-1 texlive-plain-generic=2021.20220204-1 texlive-latex-extra=2021.20220204-1
7+
RUN apt-get install -qqy python3.10 pip
8+
9+
RUN pip install PyPDF2==3.0.1

dockerfiles/pdflatex/metadata.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"pushLatest": true,
3+
"latestTag": "pdflatex"
4+
}

0 commit comments

Comments
 (0)