Created
July 9, 2023 09:18
-
-
Save mxgrn/b0b924d5160a167a3138de4044e6e3e2 to your computer and use it in GitHub Desktop.
This file contains 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
# install wkhtmltopdf | |
RUN apt-get -q update && \ | |
apt-get -qy install --no-install-recommends wget && \ | |
wget --no-check-certificate -nv -O /tmp/wkhtmltox.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.bullseye_amd64.deb && \ | |
apt-get -qy install /tmp/wkhtmltox.deb && \ | |
cd /usr/local/bin && \ | |
cp wkhtmltoimage /usr/bin/wkhtmltoimage && \ | |
cp wkhtmltopdf /usr/bin/wkhtmltopdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment