test: fix docker build with updated ImageMagick URL

This commit is contained in:
Nathan Fiedler
2022-12-10 11:38:44 -08:00
parent aeee42de19
commit bc0b4960c6

View File

@ -6,7 +6,7 @@ RUN apt-get update \
ENV MAGICK_VERSION 7.1
RUN curl https://download.imagemagick.org/ImageMagick/download/ImageMagick.tar.gz | tar xz \
RUN curl https://imagemagick.org/archive/ImageMagick.tar.gz | tar xz \
&& cd ImageMagick-${MAGICK_VERSION}* \
&& ./configure --with-magick-plus-plus=no --with-perl=no \
&& make \