From e76db6a6e62a867d1bf99faeb42850c4dacaa140 Mon Sep 17 00:00:00 2001 From: Nicolas Alscher Date: Thu, 22 Feb 2024 10:56:07 +0100 Subject: [PATCH] fix(8.3): remove imagick until issue 640 is resolved (#24) --- 8.3/alpine/cli/Dockerfile | 11 +++-------- 8.3/alpine/fpm/Dockerfile | 11 +++-------- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/8.3/alpine/cli/Dockerfile b/8.3/alpine/cli/Dockerfile index e5ff03f..deca253 100644 --- a/8.3/alpine/cli/Dockerfile +++ b/8.3/alpine/cli/Dockerfile @@ -20,15 +20,10 @@ RUN apk add --update --no-cache libzip-dev \ RUN apk add --update --no-cache exiftool \ && docker-php-ext-install exif -# imagick -RUN apk add --update --no-cache build-base autoconf imagemagick imagemagick-dev \ - && pecl install imagick \ - && docker-php-ext-enable imagick - -#RUN apk add --update --no-cache autoconf g++ imagemagick-dev libtool make pcre-dev \ +# imagick https://github.com/Imagick/imagick/issues/640 +# RUN apk add --update --no-cache build-base autoconf imagemagick imagemagick-dev \ # && pecl install imagick \ -# && docker-php-ext-enable imagick \ -# && apk del autoconf g++ libtool make pcre-dev +# && docker-php-ext-enable imagick # intl RUN apk add --update --no-cache icu-dev \ diff --git a/8.3/alpine/fpm/Dockerfile b/8.3/alpine/fpm/Dockerfile index 63cfcbe..c255968 100644 --- a/8.3/alpine/fpm/Dockerfile +++ b/8.3/alpine/fpm/Dockerfile @@ -20,15 +20,10 @@ RUN apk add --update --no-cache libzip-dev \ RUN apk add --update --no-cache exiftool \ && docker-php-ext-install exif -# imagick -RUN apk add --update --no-cache build-base autoconf imagemagick imagemagick-dev \ - && pecl install imagick \ - && docker-php-ext-enable imagick - -#RUN apk add --update --no-cache autoconf g++ imagemagick-dev libtool make pcre-dev \ +# imagick https://github.com/Imagick/imagick/issues/640 +# RUN apk add --update --no-cache build-base autoconf imagemagick imagemagick-dev \ # && pecl install imagick \ -# && docker-php-ext-enable imagick \ -# && apk del autoconf g++ libtool make pcre-dev +# && docker-php-ext-enable imagick # intl RUN apk add --update --no-cache icu-dev \