Sign inSign up

hamroctopus/latex-cmake

By hamroctopus

Updated about 10 years ago

Build environment for LaTeX projects compiled with cmake

Image
0

1.6K

hamroctopus/latex-cmake repository overview

Overview

Build Status image image image image

This project provides a docker container encapsulating a LaTeX and cmake build environment.

Provenance

This container uses tianon/latex as a base.

Contents

This image contains the following packages

  • cmake 3.4.0
  • make 4.0
  • poppler-utils 0.26.5-2+deb8u1
  • gcc 4.9.2
  • curl 7.38.0a-4+deb8u3

Use

There are two use cases for this docker container, autopilot and manual control. Both require mounting your directory with latex sources as /data in the container.

Autopilot

Invoking this container without arguments will run the standard cmake build routine, i.e.

docker run -v $(pwd):/data hamroctopus/latex-cmake:3.4.0

will tell the container to mount the current directory and execute the following

mkdir build
cd build
cmake ..
make
Manual

If your build pattern deviates from the above, pass your custom instructions as arguments

docker run -v $(pwd):/data hamroctopus/latex-cmake:3.4.0 step1 && step2 && step3

Tag summary

Content type

Image

Digest

Size

2.3 GB

Last updated

about 10 years ago

docker pull hamroctopus/latex-cmake:3.4.0