commit cbb71e4427ba2e730d4aec4b257e020dc6f22610 Author: norangebit Date: Sun Feb 23 17:51:36 2020 +0100 initial commit 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).