2018-03-23 12:36:41 -04:00
|
|
|
#!/bin/sh
|
2020-01-31 09:45:26 -05:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2018-03-23 13:06:31 -04:00
|
|
|
apt-get update
|
|
|
|
|
2020-01-31 09:45:26 -05:00
|
|
|
apt-get install ghostscript imagemagick optipng --yes
|
|
|
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2022-04-04 10:31:50 -04:00
|
|
|
|
|
|
|
# Allow ImageMagick to process PDF files. Filestore does pdf to image
|
|
|
|
# conversion for the templates service.
|
|
|
|
patch /etc/ImageMagick-6/policy.xml <<EOF
|
|
|
|
--- old.xml 2022-03-23 09:16:03.985433900 -0400
|
|
|
|
+++ new.xml 2022-03-23 09:16:18.625471992 -0400
|
|
|
|
@@ -91,6 +91,5 @@
|
|
|
|
<policy domain="coder" rights="none" pattern="PS2" />
|
|
|
|
<policy domain="coder" rights="none" pattern="PS3" />
|
|
|
|
<policy domain="coder" rights="none" pattern="EPS" />
|
|
|
|
- <policy domain="coder" rights="none" pattern="PDF" />
|
|
|
|
<policy domain="coder" rights="none" pattern="XPS" />
|
|
|
|
</policymap>
|
|
|
|
EOF
|