diff --git a/php/Dockerfile-8.3 b/php/Dockerfile-8.3 index 241c77b..8b273dd 100644 --- a/php/Dockerfile-8.3 +++ b/php/Dockerfile-8.3 @@ -83,11 +83,9 @@ RUN set -xe \ # && for i in $(seq 1 3); do pecl install -o imagick && s=0 && break || s=$? && sleep 1; done; (exit $s) \ # && docker-php-ext-enable imagick \ -ARG IMAGICK_VERSION=3.7.0 - # Imagick is installed from the archive because regular installation fails # See: https://github.com/Imagick/imagick/issues/643#issuecomment-1834361716 -RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/${IMAGICK_VERSION}.tar.gz \ +RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/3.7.0.tar.gz \ && tar --strip-components=1 -xf /tmp/imagick.tar.gz \ && phpize \ && ./configure \