From edc9c0c242a604429512057ad1a821d37890dabd Mon Sep 17 00:00:00 2001 From: Hannah Bollar Date: Thu, 4 Jan 2024 10:29:03 -0800 Subject: [PATCH] add dockerfile for render.com access to pandoc3.1.3 Signed-off-by: Hannah Bollar --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4daff8a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM ubuntu:latest + +# Update and install necessary packages +RUN apt-get update && apt-get install -y wget + +# Download and install Pandoc +RUN wget https://github.com/jgm/pandoc/releases/download/3.1.3/pandoc-3.1.3-1-amd64.deb && \ + dpkg -i pandoc-3.1.3-1-amd64.deb