Skip to content

tammolaube/docker-minimal-texlive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker Minimal TeX Live

Creates a container with a minimal installation of TeX Live.

Build

Use the --build-arg option with the variable TEX_PACKAGES to specify the packages that need to be installed in your container.

$ docker build -t mintexlive --build-arg TEX_PACKAGES="koma-script verbatimbox readarray listofitems advdate marvosym babel-german" .

Run

To run, call the tex program you would like to run. For example, to run pdflatex on all files in current directory:

$ docker run --rm -v "$PWD":/workdir -w /workdir mintexlive pdflatex *.tex

If no command is given the container will echo the environment variable TEX_PACKAGES specified at container build time:

$ docker run --rm mintexlive 
Installed with tex packages: koma-script verbatimbox readarray listofitems advdate marvosym babel-german

About

Docker container with minimal texlive installation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published