/latex-docker

Primary LanguageDockerfile

Docker Pulls Docker Image Size (tag) GitHub Workflow Status

Github Docker Registry

I no longer use the Github Docker Registry because the upload timeouts.

latex-docker

A docker container which provide texlive-full and some other need tools. You can also use this in your CI/CD.

Feel free to create a Issue or PR.

Usage

docker pull docker.io/chillfre4k/latex

exec docker run --rm -i --user="$(id -u):$(id -g)" --net=none -v "$PWD":"/data" chillfre4k/latex pdflatex main.tex

Examples

Gitlab-CI

image: docker.io/chillfre4k/latex:latest

build:
  script:
    - pdflatex thesis.tex
  artifacts:
    paths:
      - "*.pdf"