From 5c39c9d1e8f20ff16115be87db40aa9b4f028fcf Mon Sep 17 00:00:00 2001 From: Jonas Zohren <jonas.zohren@tu-dortmund.de> Date: Thu, 5 Sep 2019 17:25:30 +0200 Subject: [PATCH] Add david's stuff. No ARCH! --- Dockerfile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c84c02..e451ac1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,19 @@ FROM node:12-alpine -RUN apk add --no-cache git curl \ No newline at end of file +RUN apk add --no-cache git curl + +ENV PANDOC_VERSION=2.7.3 + +RUN apk add --no-cache ttf-linux-libertine +RUN apk add --no-cache texlive-full +RUN apk add --no-cache hugo git +RUN apk add --no-cache parallel +RUN apk add --no-cache nodejs + +RUN apk add --no-cache ca-certificates wget \ + && wget -O /tmp/pandoc.tar.gz https://github.com/jgm/pandoc/releases/download/${PANDOC_VERSION}/pandoc-${PANDOC_VERSION}-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 + -- GitLab