mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-22 11:00:14 -04:00
12 lines
385 B
Plaintext
Executable File
12 lines
385 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! apk info 2>&1 | grep -q "imagemagick"; then
|
|
echo "**** adding imagemagick to package install list ****"
|
|
PHPVERSION=$(readlink -f /usr/bin/php | sed 's|/usr/bin/||')
|
|
echo "\
|
|
imagemagick \
|
|
${PHPVERSION}-pecl-imagick" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** imagemagick already installed, skipping ****"
|
|
fi
|