mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
update images
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
ed3759bfb4
commit
79c05f8324
|
@ -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 \
|
||||||
|
|
|
@ -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" ]
|
||||||
|
|
|
@ -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 \
|
||||||
|
|
Loading…
Reference in New Issue
Block a user