pandocker/Dockerfile
norangebit 84c2d38b84
clean up
- replace second wget with cp
- delete empty entrypoint
- remove xifthen package
2020-02-26 20:51:31 +01:00

21 lines
463 B
Docker

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
WORKDIR /root/.pandoc/templates
RUN cp /.local/share/pandoc/templates/*.latex /root/.pandoc/templates
# moderncv
RUN tlmgr install moderncv \
ifmtarg \
fontawesome \
|| exit 1
WORKDIR /data