Skip to content

Commit

Permalink
fixup! fixup! imagick workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
micszo committed Oct 7, 2024
1 parent 3a383a0 commit 7e9cdd5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions php/Dockerfile-8.3
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 7e9cdd5

Please sign in to comment.