I'm using custom runtime on GAE Flexible environment. Imagemagick is installed and it's working as expected.
RUN apt-get update && \
apt-get install imagemagick -y
I now need additional fonts installed (as some pdfs, when being converted to images, aren't rendering correctly).
Are the steps to install a new font:
apt-get install the font(s)
Somehow get imagick_type_gen ( https://martin-thoma.com/add-a-new-font-to-imagemagick/)
Call
perl imagick_type_gen > types.xml
Copy over imagemagick types with types generated in step 3.
Are the steps outlined correct?
How does one download a script that isn't available via apt-get (step 2)?
Does GAE flexible environment allow you to overwrite files (steps 3 and 4 above).
Thanks