mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
try imagemagick6
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
6f5b2cc94e
commit
7a6f350248
2 changed files with 4 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ RUN set -ex; \
|
||||||
ghostscript-dev \
|
ghostscript-dev \
|
||||||
tiff-dev \
|
tiff-dev \
|
||||||
zlib-dev \
|
zlib-dev \
|
||||||
imagemagick-dev \
|
imagemagick6-dev \
|
||||||
libheif-dev \
|
libheif-dev \
|
||||||
librsvg-dev \
|
librsvg-dev \
|
||||||
libxext-dev \
|
libxext-dev \
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,9 @@ if [ -n "$ADDITIONAL_APKS" ]; then
|
||||||
if ! [ -f "/additional-apks-are-installed" ]; then
|
if ! [ -f "/additional-apks-are-installed" ]; then
|
||||||
read -ra ADDITIONAL_APKS_ARRAY <<< "$ADDITIONAL_APKS"
|
read -ra ADDITIONAL_APKS_ARRAY <<< "$ADDITIONAL_APKS"
|
||||||
for app in "${ADDITIONAL_APKS_ARRAY[@]}"; do
|
for app in "${ADDITIONAL_APKS_ARRAY[@]}"; do
|
||||||
|
if [ "$app" = "imagemagick" ]; then
|
||||||
|
app=imagemagick6
|
||||||
|
fi
|
||||||
echo "Installing $app via apk..."
|
echo "Installing $app via apk..."
|
||||||
if ! apk add --no-cache "$app" >/dev/null; then
|
if ! apk add --no-cache "$app" >/dev/null; then
|
||||||
echo "The packet $app was not installed!"
|
echo "The packet $app was not installed!"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue