norangebit
84c2d38b84
- replace second wget with cp - delete empty entrypoint - remove xifthen package
21 lines
463 B
Docker
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
|