项目作者: phipsgabler

项目描述 :
Docker image for a minimal texlive setup
高级语言: Dockerfile
项目地址: git://github.com/phipsgabler/docker-texlive-minimal.git
创建时间: 2017-02-28T14:42:57Z
项目社区:https://github.com/phipsgabler/docker-texlive-minimal

开源协议:The Unlicense

下载


docker-texlive-minimal


A minimal image containing a Linux and a recent texlive.

Based on frolvlad/alpine-glibc, this SO post,
and some hints from this repo.

You have to install all packages manually using tlmgr, like

  1. RUN tlmgr install babel-english hyperref latex latex-fonts

or from a file:

  1. COPY packages.txt /tmp/packages.txt
  2. RUN tlmgr install $(cat /tmp/packages.txt)