diff --git a/alpine-pandoc/Dockerfile b/alpine-pandoc/Dockerfile new file mode 100644 index 0000000..bb60e7f --- /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