1
0
mirror of https://github.com/strongdm/comply synced 2024-11-05 07:25:26 +00:00

Prepare pandoc upgrade (not pushed to docker hub yet)

This commit is contained in:
Justin McCarthy 2018-05-23 16:46:28 -07:00
parent 82baa57684
commit ff350a2b89
No known key found for this signature in database
GPG Key ID: 900437410E142A48
2 changed files with 27 additions and 3 deletions

View File

@ -62,7 +62,6 @@ export-example:
docker: docker:
cd build && docker build -t strongdm/pandoc . cd build && docker build -t strongdm/pandoc .
docker tag jagregory/pandoc:latest strongdm/pandoc:latest
docker push strongdm/pandoc docker push strongdm/pandoc
cleanse: cleanse:

View File

@ -1,3 +1,28 @@
FROM scratch FROM haskell:latest
MAINTAINER strongDM Comply <comply@strongdm.com> # based on implementation by James Gregory <james@jagregory.com>
MAINTAINER Comply <comply@strongdm.com>
# install latex packages
RUN apt-get update -y \
&& apt-get install -y -o Acquire::Retries=10 --no-install-recommends \
texlive-latex-base \
texlive-xetex \
latex-xcolor \
texlive-latex-extra \
fontconfig \
unzip \
lmodern
# will ease up the update process
# updating this env variable will trigger the automatic build of the Docker image
ENV PANDOC_VERSION "2.2.1"
# install pandoc
RUN cabal update && cabal install pandoc-${PANDOC_VERSION}
WORKDIR /source
ENTRYPOINT ["/root/.cabal/bin/pandoc"]
CMD ["--help"]