GithubHelp home page GithubHelp logo

reitzig / texlive-docker Goto Github PK

View Code? Open in Web Editor NEW
21.0 3.0 6.0 92 KB

Docker images for TeXlive that easily adjust to your needs

License: Apache License 2.0

Dockerfile 55.07% Shell 44.93%
texlive docker latex docker-image

texlive-docker's Introduction

TeXlive Docker Images

Yet another attempt at coming up with working and generally applicable Docker images for TeXlive.

The basic concept is to provide small-ish base images which install additional packages from CTAN if and when needed.

These images attempt to cover the following use cases:

  • Replace local TeXlive installations.
  • Build LaTeX documents in CI/CD pipelines.
  • Build legacy documents with old package versions.

We currently publish the following images based on different selections from the TeXlive collections suggested by the installer; from smaller to larger:

We also provide PoCs to demonstrate that more involved applications can be built on top of the base images provided here:

Usage

The fastest way to build a document at hand (once) is this:

docker run --rm \
    --volume `pwd`:/work/src:ro \
    --volume `pwd`/out:/work/out \
    reitzig/texlive-base-luatex \
    work lualatex hello_world.tex

Note:

  • This assumes that all TeXlive packages beyond what is contained in the texlive-base-luatex image are listed in Texlivefile. You can also use image reitzig/texlive-full instead if you are happy with downloading a (way) larger image.
  • This may overwrite files in out. Chose a folder name that you currently do not use.

See the scripts in examples for other ways to use the images.

Dependencies

Place a file called Texlivefile with a list of required CTAN packages, one name per line, in the source directory. The container will install all packages on that list before running the work command.


⚠️ Installing dependencies in this way will stop working once a new version of TeXlive is released, with an error like this:

tlmgr: Local TeX Live (2023) is older than remote repository (2024).

If you need to keep using an older image for a little while, you can override the repository by setting environment variable TEXLIVE_REPOSITORY to a value like

https://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2023/tlnet-final

This feature has been available since 2024.2; see reitzig/texlive-docker#18.2022953222 for hints on how to backport it to older images.

⚠️ Note that most CTAN mirrors do not maintain historic versions (cf. tex.SE#460132), so keep in mind that widespread use of this workaround will stress those few mirrors that do. We strongly recommend upgrading to the latest TeXlive version as soon as possible!

ℹ️ That said, an alternative is to maintain custom Docker images with historic package versions. This approach completely avoids the need for running tlmgr at runtime, so repository freeze does not impact your builds.


Parameters

You can adjust some defaults of the main container script by setting environment variables

  • BUILDSCRIPT (default: build.sh)
    If present, the given script will be executed unless a work command is specified.
  • TEXLIVEFILE (default: Texlivefile)
    The file to read dependencies from.
  • OUTPUT (default: *.pdf *.log)
    Shell pattern for all files that should be copied from the working to the output directory.

Debugging

All output of the work command is collected in a single folder; extract it with:

docker cp $container:/work/tmp ./

Build

Run

docker build -t texlive-base-luatex --build-arg "profile=base-luatex" .

to build an image locally. Exchange base-luatex for any of the profile names in profiles to start from another baseline.

Customization

If you repeatedly need the same exact set of dependencies or even sources, it might make sense to create your own TeXlive Docker image. There are two ways to go about that:

  • Extend one of the existing images using your own Dockerfile (see example); install additional TeXlive (or even Alpine) packages, copy source files or additional scripts into the appropriate folders, fix the work command, or ...

  • Use install-tl to create your own TeXlive installation profile. Make sure to

    1. select platform x86_64-linuxmusl and
    2. manually change line binary_x86_64-linux 1 in the resulting profile file to binary_x86_64-linux 0.

    If you want to use your profile across different TeXlive versions, replace all occurrences of the TeXlive version (e.g. 2019) with ${tlversion}.

    Copy the final file to profiles and run the regular build command.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.