Skip to content

Instantly share code, notes, and snippets.

@lifeisfoo
Created November 5, 2016 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lifeisfoo/31acf58950a5ff280e5c6cd366bd052c to your computer and use it in GitHub Desktop.
Save lifeisfoo/31acf58950a5ff280e5c6cd366bd052c to your computer and use it in GitHub Desktop.
docker jre8 wkhtmltopdf alpine
FROM openjdk:8u92-jre-alpine
RUN apk add --update --no-cache \
curl libgcc libstdc++ libx11 glib libxrender libxext libintl ttf-liberation
RUN curl -O http://download.gna.org/wkhtmltopdf/0.12/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
RUN tar -xvJ -f wkhtmltox-0.12.3_linux-generic-amd64.tar.xz wkhtmltox/bin/wkhtmltopdf
RUN mv wkhtmltox/bin/wkhtmltopdf /usr/bin
RUN rm -rf wkhtmltox
RUN rm wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
ENTRYPOINT ["wkhtmltopdf"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment