update images

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle
2018-02-23 11:35:53 -05:00
parent ed3759bfb4
commit 79c05f8324
3 changed files with 11 additions and 3 deletions

View File

@@ -1,6 +1,14 @@
FROM haskell
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN cabal update && cabal install pandoc pandoc-citeproc
RUN buildDeps=' \
unzip \
' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& cabal update \
&& cabal install pandoc pandoc-citeproc \
&& apt-get purge -y --auto-remove $buildDeps
ENTRYPOINT [ "pandoc" ]