Created
May 7, 2019 14:21
-
-
Save armetiz/bd639d2bf1b009ba4bd15e406781858a to your computer and use it in GitHub Desktop.
wkhtmltox-0.12.5-1 AWS ElasticBeanstalk AMI 2018.03
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
packages: | |
yum: | |
zlib: [] | |
fontconfig: [] | |
freetype: [] | |
libX11: [] | |
libXext: [] | |
libXrender: [] | |
xorg-x11-fonts-75dpi: [] | |
xorg-x11-fonts-Type1: [] | |
commands: | |
"01-libpng-download": | |
command: curl -o /tmp/libpng-1.5.15.tar.gz https://sourceforge.net/projects/libpng/files/libpng15/older-releases/1.5.15/libpng-1.5.15.tar.gz/download | |
"02-libpng-extract": | |
command: mkdir /tmp/libpng-1.5.15 && tar xzvf /tmp/libpng-1.5.15.tar.gz -C /tmp | |
"03-libpng-compilation": | |
command: cd /tmp/libpng-1.5.15 && ./configure && sudo make install | |
"04-libpng-clean": | |
command: sudo rm -rf /tmp/libpng-1.5.15* |
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
packages: | |
rpm: | |
wkhtmltox: https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox-0.12.5-1.centos6.x86_64.rpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I received this issue:
And checking this file, I discovered this:
So my solution was use wget because it's download as the 'gzip compressed data'. And afterward I just used the tar without the z option.
Solution: