Skip to content

Commit

Permalink
[Feature:Autograding] Add pdflatex image (#54)
Browse files Browse the repository at this point in the history
### What is the current behavior?
Creates a docker file for pdflatex for
more_autograding_examples/test_notes_upload/

Closes Submitty/Submitty#10940
  • Loading branch information
lavalleeale authored Oct 14, 2024
1 parent fc29263 commit ca9f553
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dockerfiles/pdflatex/2021/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions dockerfiles/pdflatex/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"pushLatest": true,
"latestTag": "pdflatex"
}

0 comments on commit ca9f553

Please sign in to comment.