-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
1 parent
fc29263
commit ca9f553
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"pushLatest": true, | ||
"latestTag": "pdflatex" | ||
} |