Skip to content

Commit

Permalink
Add pandoc binary package installation to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Michionlion committed Sep 11, 2020
1 parent 63390a6 commit 3088a13
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ VOLUME ${PROJECT_DIR} ${GATORGRADER_DIR}
RUN set -ex && echo "Installing packages..." && apk update \
&& apk add --no-cache bash python3 git ruby-rdoc openjdk11 gradle npm \
&& rm -rf /var/cache/apk/* \
&& wget -O /pandoc.tar.gz https://github.com/jgm/pandoc/releases/download/2.10.1/pandoc-2.10.1-linux-amd64.tar.gz \
&& tar -C /usr --strip-components 1 -xzvf /pandoc.tar.gz \
&& rm /pandoc.tar.gz \
&& echo "Testing pandoc..." \
&& /usr/bin/pandoc --version \
&& gem install mdl \
&& npm install -g htmlhint \
&& python3 -m pip install --upgrade pip \
Expand Down

0 comments on commit 3088a13

Please sign in to comment.