Commit 5f6ff13f authored by Michael D. Schmitt's avatar Michael D. Schmitt

New LaTeX Docker image for Gitlab CI template

Add a recent, maintained LaTeX docker image for builds of LaTeX docs
Use a variable to determine which Docker image to use in the pipeline
parent d3462578
---
title: Update LaTeX Docker image in CI Templates to TexLive 2020
merge_request: 52043
author: Michael Schmitt @schmitmd
type: changed
# use docker image with latex preinstalled
# since there is no official latex image, use https://github.com/blang/latex-docker
# possible alternative: https://github.com/natlownes/docker-latex
image: blang/latex
---
variables:
# Feel free to choose the image that suits you best.
# blang/latex:latest ... Former image used in this template. No longer maintained by author.
# listx/texlive:2020 ... The default, referring to TexLive 2020. Current at least to 2021-02-02.
# Additional alternatives with high Docker pull counts:
# thomasweise/docker-texlive-full
# thomasweise/texlive
# adnrv/texlive
LATEX_IMAGE: listx/texlive:2020
build:
image: $LATEX_IMAGE
script:
- latexmk -pdf
artifacts:
paths:
- "*.pdf"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment