chore: fix the ImageMagick URL for docker container build

This commit is contained in:
Nathan Fiedler
2021-01-23 09:38:46 -08:00
parent aba1a324f4
commit 82778e69f5

View File

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