Since the downloads page doesn’t have a stand alone binary, you’ll likely need to download the package, and any dependencies.
It looks like wkhtmltopdf
has a package that can be installed using apt
so that should make it easier for you.
The commands I used to start that installation:
- SSH into the container
- Search for the
wkhtmltopdf
package using:apt-cache search wkhtmltopdf
- Seeing it listed, I then try installing it:
apt install wkhtmltopdf
- I didn’t finish installing, but it should work for your needs
Not quite sure how it should all be setup, but that should get you pointed in the right direction!
– Ben