Open KernelDeimos opened 5 years ago
Actually it turns out the source of the issue runs deeper...
The following (from the issue above) seems to work to install pngquant-bin
globally, but unfortunately that doesn't stop the build script from failing
npm install -g pngquant-bin --allow-root --unsafe-perm=true
Edit: Running the following (also from the issue above) in the Docker container fixes the issue: wget -q -O /tmp/libpng12.deb http://mirrors.kernel.org/ubuntu/pool/main/libp/libpng/libpng12-0_1.2.54-1ubuntu1_amd64.deb && sudo dpkg -i /tmp/libpng12.deb && rm /tmp/libpng12.deb
- it seems like an older version of libpng than the one installed is required. Additionally, I had to manually install the gulp
package. Maybe sudo npm install -g gulp
should be added to the readme
I received the following error when trying to run
make widget
. I'm unsure how to proceed with debugging this