From 287a5a08cdd30ff4050e3eb3c56dd8c46c5b0c9a Mon Sep 17 00:00:00 2001 From: Simon L Date: Sat, 1 Apr 2023 21:01:28 +0200 Subject: [PATCH] remove temporarily added dependencies after avatar problem was fixed after https://github.com/nextcloud/all-in-one/issues/1628 was fixed Signed-off-by: Simon L --- Containers/nextcloud/Dockerfile | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/Containers/nextcloud/Dockerfile b/Containers/nextcloud/Dockerfile index dfa5bc6c..343427e2 100644 --- a/Containers/nextcloud/Dockerfile +++ b/Containers/nextcloud/Dockerfile @@ -27,32 +27,21 @@ RUN set -ex; \ apk add --no-cache --virtual .build-deps \ $PHPIZE_DEPS \ autoconf \ - libtool \ freetype-dev \ + gmp-dev \ icu-dev \ + imagemagick-dev \ libevent-dev \ libjpeg-turbo-dev \ libmcrypt-dev \ - libpng-dev \ libmemcached-dev \ + libpng-dev \ + libwebp-dev \ libxml2-dev \ libzip-dev \ openldap-dev \ pcre-dev \ postgresql-dev \ - libwebp-dev \ - gmp-dev \ - lcms2-dev \ - fontconfig-dev \ - freetype-dev \ - ghostscript-dev \ - tiff-dev \ - zlib-dev \ - imagemagick-dev \ - libheif-dev \ - librsvg-dev \ - libxext-dev \ - ghostscript-fonts \ ; \ \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \ @@ -61,13 +50,13 @@ RUN set -ex; \ bcmath \ exif \ gd \ + gmp \ intl \ ldap \ opcache \ pcntl \ pdo_pgsql \ zip \ - gmp \ ; \ \ # pecl will claim success even if one install fails, so we need to perform each install separately @@ -215,12 +204,7 @@ RUN set -ex; \ mawk \ sudo \ grep \ - coreutils \ - libjpeg \ - librsvg \ - libheif \ - libpng \ - ghostscript-fonts; + coreutils; RUN set -ex; \ grep -q '^pm = dynamic' /usr/local/etc/php-fpm.d/www.conf; \