Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
install deb provided by pandoc maintainer
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed May 26, 2018
1 parent 122b525 commit d55365f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ MAINTAINER Netlify
ENV LANGUAGE en_US:en
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV PANDOC_VERSION 2.2.1

# language export needed for ondrej/php PPA https://github.com/oerdnj/deb.sury.org/issues/56
RUN export DEBIAN_FRONTEND=noninteractive && \
Expand Down Expand Up @@ -131,7 +132,6 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
nasm \
openjdk-8-jdk \
optipng \
pandoc \
php5.6 \
php5.6-xml \
php5.6-mbstring \
Expand Down Expand Up @@ -170,6 +170,12 @@ RUN wget -nv https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4
cp -r ./ /usr/ && \
wkhtmltopdf -V

# install Pandoc (more recent version to what is provided in Ubuntu 14.04)
RUN wget https://github.com/jgm/pandoc/releases/download/$PANDOC_VERSION/pandoc-$PANDOC_VERSION-1-amd64.deb && \
dpkg -i pandoc-$PANDOC_VERSION-1-amd64.deb && \
rm pandoc-$PANDOC_VERSION-1-amd64.deb && \
pandoc -v

################################################################################
#
# Libvips
Expand Down

0 comments on commit d55365f

Please sign in to comment.