texlive Docker image for LSST documentation deployment
2.7K
Use lsst-texlive in a CI environment to speed up build times, or as a replacement for a local texlive installation on your computer.
Links:
This example demonstrates how how to build DMTN-044 (a LaTeX-formatted technical note) with lsst-texlive.
git clone https://github.com/lsst-dm/dmtn-044
cd dmtn-044
git submodule init && git submodule update
docker run --rm -v `pwd`:/workspace -w /workspace lsstsqre/lsst-texlive:latest sh -c 'make'
Notes:
-v argument binds the current working directory (the technote's source) to the /workspace directory in the container.-w argument has the container run the user command (sh -c make) from that workspace directory.The lsst/lsst-texlive image uses a Ubuntu trusty (14.04) base.
It includes git, make and a complete texlive installation.
See the Dockerfile for details.
Copyright 2017 Association of Universities for Research in Astronomy, Inc..
lsst-texlive is MIT-licensed open source. See LICENSE file.
Content type
Image
Digest
Size
1.4 GB
Last updated
almost 6 years ago
docker pull lsstsqre/lsst-texlive:travis-27