Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7e9cdd5

Browse files
committedOct 7, 2024·
fixup! fixup! imagick workaround
1 parent 3a383a0 commit 7e9cdd5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎php/Dockerfile-8.3

+1-3
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,9 @@ RUN set -xe \
8383
# && for i in $(seq 1 3); do pecl install -o imagick && s=0 && break || s=$? && sleep 1; done; (exit $s) \
8484
# && docker-php-ext-enable imagick \
8585

86-
ARG IMAGICK_VERSION=3.7.0
87-
8886
# Imagick is installed from the archive because regular installation fails
8987
# See: https://github.com/Imagick/imagick/issues/643#issuecomment-1834361716
90-
RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/${IMAGICK_VERSION}.tar.gz \
88+
RUN curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/refs/tags/3.7.0.tar.gz \
9189
&& tar --strip-components=1 -xf /tmp/imagick.tar.gz \
9290
&& phpize \
9391
&& ./configure \

0 commit comments

Comments
 (0)
Please sign in to comment.