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
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
3 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM debian:sid FROM debian:buster
LABEL maintainer "Jessie Frazelle <jess@linux.com>" LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN dpkg --add-architecture arm64 \ RUN dpkg --add-architecture arm64 \

View File

@ -1,6 +1,14 @@
FROM haskell FROM haskell
LABEL maintainer "Jessie Frazelle <jess@linux.com>" 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" ] ENTRYPOINT [ "pandoc" ]

View File

@ -1,4 +1,4 @@
FROM debian:sid FROM debian:buster
LABEL maintainer "Jessie Frazelle <jess@linux.com>" LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \