EIO-247: add converters scripts

This commit is contained in:
Nelson Roberts
2020-02-19 10:53:53 -07:00
parent db19316701
commit 147506ead0
50 changed files with 1130 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM debian:latest
RUN apt-get update
RUN apt-get -y install build-essential python3-dev python3-pip python3-setuptools python3-wheel python3-cffi libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info pandoc jq
RUN apt-get clean
RUN apt-get autoclean
RUN pip3 install WeasyPrint
COPY fonts/ /usr/share/fonts/truetype/
WORKDIR /doc_tools
COPY css css/
COPY images images/
COPY templates templates/
COPY headers headers/
COPY scripts scripts/
ENTRYPOINT ["scripts/entrypoint.sh"]