-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update and make it better and faster
- Loading branch information
1 parent
5f399e9
commit c6e7cac
Showing
2 changed files
with
35 additions
and
48 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 |
---|---|---|
@@ -1,12 +1,16 @@ | ||
# Base image with LaTeX tools | ||
FROM pandoc/latex:latest | ||
|
||
# Update TeX Live Manager and install required packages | ||
RUN tlmgr update --self && \ | ||
tlmgr install enumitem titlesec xcharter etoolbox xstring geometry fancyhdr xkeyval fontaxes | ||
tlmgr install \ | ||
enumitem \ | ||
titlesec \ | ||
xcharter \ | ||
etoolbox \ | ||
xstring \ | ||
geometry \ | ||
fancyhdr \ | ||
xkeyval \ | ||
fontaxes | ||
|
||
# Default working directory | ||
WORKDIR /data | ||
|
||
# Set pdflatex as the default entrypoint | ||
ENTRYPOINT ["pdflatex"] |
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