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
|
|
|
|
|
2020-02-24 17:59:28 +00:00
|
|
|
WORKDIR /root/.pandoc/templates
|
|
|
|
RUN wget \
|
|
|
|
https://git.norangeb.it/norangebit/pancv/raw/branch/master/pancv.tex \
|
|
|
|
-O pancv.latex
|
|
|
|
|
2020-02-23 16:51:36 +00:00
|
|
|
RUN tlmgr install xifthen \
|
|
|
|
moderncv \
|
|
|
|
ifmtarg \
|
2020-02-26 17:54:08 +00:00
|
|
|
fontawesome \
|
2020-02-23 16:51:36 +00:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
WORKDIR /data
|
|
|
|
|
|
|
|
ENTRYPOINT [""]
|