pandocker/Dockerfile

21 lines
463 B
Docker
Raw Normal View History

2020-02-23 16:51:36 +00:00
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
# drone compatibility
2020-02-24 17:59:28 +00:00
WORKDIR /root/.pandoc/templates
RUN cp /.local/share/pandoc/templates/*.latex /root/.pandoc/templates
2020-02-24 17:59:28 +00:00
# moderncv
RUN tlmgr install moderncv \
2020-02-23 16:51:36 +00:00
ifmtarg \
2020-02-26 17:54:08 +00:00
fontawesome \
2020-02-23 16:51:36 +00:00
|| exit 1
WORKDIR /data