diff --git a/Dockerfile b/Dockerfile
index f28c2831afb636f18d37c046734e5aff55148dd1..73028a79b1e24869069169221a0b7e36fe101154 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,5 +4,13 @@ FROM alpine:edge
 
 RUN apk add texlive-full hugo
 
+RUN apk add ca-certificates wget \
+  && wget -O /tmp/pandoc.tar.gz https://github.com/jgm/pandoc/releases/download/2.7.3/pandoc-2.7.3-linux.tar.gz \
+  && tar xvzf /tmp/pandoc.tar.gz --strip-components 1 -C /usr/local/ \
+  && update-ca-certificates \
+  && apk del wget \
+  && rm /tmp/pandoc.tar.gz
+
+
 # RUN wget -q https://github.com/gohugoio/hugo/releases/download/v0.55.6/hugo_0.55.6_Linux-64bit.deb -O /tmp/hugo.deb && dpkg -i /tmp/hugo.deb