From 9735bac86d28b9a7b4b258bb2947b3c6bf12f51d Mon Sep 17 00:00:00 2001
From: David Mehren <dmehren1@gmail.com>
Date: Tue, 18 Jun 2019 14:18:11 +0200
Subject: [PATCH] Add Pandoc

---
 Dockerfile | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/Dockerfile b/Dockerfile
index f28c283..73028a7 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
 
-- 
GitLab