From 5f707156e556baab4f390ed695c947fbff3bb358 Mon Sep 17 00:00:00 2001 From: Andreas Bellmann Date: Fri, 19 Mar 2021 15:10:58 +0100 Subject: [PATCH 1/2] added dockerfile with pandoc support --- alpine-pandoc/Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 alpine-pandoc/Dockerfile diff --git a/alpine-pandoc/Dockerfile b/alpine-pandoc/Dockerfile new file mode 100644 index 0000000..0efe697 --- /dev/null +++ b/alpine-pandoc/Dockerfile @@ -0,0 +1,21 @@ +FROM doctoolchain + +# Reinstall any system packages required for runtime of pandoc. +RUN apk --no-cache add \ + gmp \ + libffi \ + lua5.3 \ + lua5.3-lpeg + +COPY --from=pandoc/core:2.9 \ + /usr/bin/pandoc \ + /usr/bin/pandoc-citeproc \ + /usr/bin + +SHELL ["/bin/bash", "-c"] + +WORKDIR /project + +VOLUME /project + +ENTRYPOINT /bin/bash \ No newline at end of file From 1339f0ec57e4d220fb742fc7108de4e77730d92c Mon Sep 17 00:00:00 2001 From: Andreas Bellmann Date: Thu, 25 Mar 2021 14:10:14 +0100 Subject: [PATCH 2/2] added missing newline at end of file --- alpine-pandoc/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine-pandoc/Dockerfile b/alpine-pandoc/Dockerfile index 0efe697..bb60e7f 100644 --- a/alpine-pandoc/Dockerfile +++ b/alpine-pandoc/Dockerfile @@ -18,4 +18,4 @@ WORKDIR /project VOLUME /project -ENTRYPOINT /bin/bash \ No newline at end of file +ENTRYPOINT /bin/bash