wkhtmltopdf with qt patches
Yes, Alpine does have a wkhtmltopdf package... but it doesn't include the qt patches ... enjoy!
# Docker method
docker build -t alpine-wkhtmltopdf .
docker run alpine-wkhtmltopdf google.com - > test.pdf
# Docker shortcut
docker run technekes/docker-alpine-wkhtmltopdf google.com - > test.pdf
# Mounting with a local file (e.g. test.html)
docker run --rm -v $(pwd):/data technekes/docker-alpine-wkhtmltopdf /data/test.html - > test.pdf
Is it really the smallest html to pdf docker image on the planet?
Yes.