initial commit

This commit is contained in:
Raffaele Mignone 2020-02-23 17:51:36 +01:00
commit cbb71e4427
Signed by: norangebit
GPG Key ID: F5255658CB220573
2 changed files with 20 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -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 [""]

3
README.md Normal file
View File

@ -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).