Created
November 5, 2016 10:18
-
-
Save lifeisfoo/31acf58950a5ff280e5c6cd366bd052c to your computer and use it in GitHub Desktop.
docker jre8 wkhtmltopdf alpine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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