mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
79c05f8324
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
15 lines
358 B
Docker
15 lines
358 B
Docker
FROM haskell
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
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" ]
|