pandocker/Dockerfile

33 lines
728 B
Docker
Raw Normal View History

2020-02-23 16:51:36 +00:00
FROM pandoc/latex
2020-02-27 18:33:02 +00:00
RUN tlmgr update --self
2020-02-23 16:51:36 +00:00
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
2020-02-27 18:33:02 +00:00
# europasscv
RUN tlmgr install xifthen \
europasscv \
soul \
enumitem \
substr \
lastpage \
helvetic \
|| exit 1
2020-02-23 16:51:36 +00:00
WORKDIR /data