container-images/pandoc/Dockerfile
Vincent Batts e6643e89a7 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 <vbatts@hashbangbash.com>
2016-11-21 15:17:16 -05:00

4 lines
112 B
Docker

FROM fedora:rawhide
RUN dnf install -y pandoc-pdf && dnf clean all
ENV HOME=/tmp
ENTRYPOINT ["/usr/bin/pandoc"]