Skip to content

Commit

Permalink
update images
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Feb 23, 2018
1 parent ed3759b commit 79c05f8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kernel-builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:sid
FROM debian:buster
LABEL maintainer "Jessie Frazelle <[email protected]>"

RUN dpkg --add-architecture arm64 \
Expand Down
10 changes: 9 additions & 1 deletion pandoc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
FROM haskell
LABEL maintainer "Jessie Frazelle <[email protected]>"

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" ]
2 changes: 1 addition & 1 deletion vagrant/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:sid
FROM debian:buster
LABEL maintainer "Jessie Frazelle <[email protected]>"

RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit 79c05f8

Please sign in to comment.