This docker image supports full TeX Live 2019 with following additions:
docker run --rm -it -v $(pwd):/home danteev/texlive latexmk -pdf document.tex
Create a file .github/workflows/build.yml with following content:
name: Build
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v1
- name: Compile document.tex
uses: dante-ev/latex-action@master
with:
root_file: document.tex
Create file .circle/config.yml with following content:
version: 2
jobs:
build:
docker:
- image: danteev/texlive
steps:
- checkout
- run: latexmk -pdf document.tex
Create file .travis.yml with following content:
dist: bionic
language: generic
services: docker
script:
- docker run --rm -it -v $(pwd):/home danteev/texlive latexmk -pdf document.tex
You can run latest stable version by using the tag TL2017:
docker run --rm -it -v $(pwd):/home danteev/texlive:TL2017 latexmk document.tex
We decided to offer latest TeX Live 2019 (as time of building), because this ensures recent packages. We base on Ubuntu Cosmic as this is the latest Ubuntu version available during building.
Content type
Image
Digest
sha256:27284a6f0…
Size
2.7 GB
Last updated
3 months ago
docker pull danteev/texlive