From e6643e89a7d311df1eaa1b2cbda2934f887d6bf7 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 21 Nov 2016 15:17:16 -0500 Subject: [PATCH] pandoc: [more] minimal package set the pandoc-pdf includes only the pieces needed and shaves ~100mb off the resulting image size (though it is still 530mb). Signed-off-by: Vincent Batts --- pandoc/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pandoc/Dockerfile b/pandoc/Dockerfile index 74bec3b..ed85b3b 100644 --- a/pandoc/Dockerfile +++ b/pandoc/Dockerfile @@ -1,3 +1,4 @@ -FROM fedora:23 -RUN dnf install -y pandoc texlive && dnf clean all +FROM fedora:rawhide +RUN dnf install -y pandoc-pdf && dnf clean all +ENV HOME=/tmp ENTRYPOINT ["/usr/bin/pandoc"]