shiipou / docker-texlive

Full TeX Live

Home Page:https://hub.docker.com/r/danteev/texlive/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker image for texlive TexLive:2019 License: MIT download-size number-of-layers

This docker image supports full TeX Live 2019 with following additions:

Usage

Using docker

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

Usage in CircleCI 2.0:

Create file .circle/config.yml with following content:

version: 2
jobs:
   build:
     docker:
       - image: danteev/texlive
     steps:
       - checkout
       - run: latexmk -pdf document.tex

Usage in Travis CI:

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

Usage in GitLab CI

Create file .gitlab-ci.yml with following content:

build:
  image: danteev/texlive
  stage: build
  script:
    - latexmk -pdf document.tex
  artifacts:
    paths:
      - document.pdf

Latest stable version

You can run latest stable version by using the tag TL2017:

docker run --rm -it -v $(pwd):/home danteev/texlive:TL2017 latexmk document.tex

Background

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.

License

About

Full TeX Live

https://hub.docker.com/r/danteev/texlive/

License:MIT License


Languages

Language:Dockerfile 100.0%