From cbb71e4427ba2e730d4aec4b257e020dc6f22610 Mon Sep 17 00:00:00 2001 From: norangebit Date: Sun, 23 Feb 2020 17:51:36 +0100 Subject: [PATCH] initial commit --- Dockerfile | 17 +++++++++++++++++ README.md | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3a0e3e6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM pandoc/latex + +RUN apk --no-cache add make + +WORKDIR /.local/share/pandoc/templates +RUN wget \ + https://git.norangeb.it/norangebit/pancv/raw/branch/master/pancv.tex \ + -O pancv.latex + +RUN tlmgr install xifthen \ + moderncv \ + ifmtarg \ + || exit 1 + +WORKDIR /data + +ENTRYPOINT [""] diff --git a/README.md b/README.md new file mode 100644 index 0000000..903249d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Pandocker + +A docker image to build document with [pandoc](https://pandoc.org/) based on [pandoc/latex](https://hub.docker.com/r/pandoc/latex).