From 7e9cdd5ad8a6b66eb5aaf38c4dbac627f94c0a94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Szo=C5=82tysek?= Date: Mon, 7 Oct 2024 11:31:45 +0200 Subject: [PATCH] fixup! fixup! imagick workaround --- php/Dockerfile-8.3 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 \