Dockerfile: Update ImageMagick tarball url (they took -5 down and up put -6).

This commit is contained in:
Andreas Lind 2015-11-17 17:16:19 +01:00
parent 5dfeaa9fd1
commit 7c990b3ab3

View File

@ -72,7 +72,7 @@ RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-de
RUN rm ${TARGET}/lib/libtiffxx* RUN rm ${TARGET}/lib/libtiffxx*
RUN mkdir ${DEPS}/magick RUN mkdir ${DEPS}/magick
RUN curl -Ls http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-5.tar.xz | tar xJC ${DEPS}/magick --strip-components=1 RUN curl -Ls http://www.imagemagick.org/download/releases/ImageMagick-6.9.2-6.tar.xz | tar xJC ${DEPS}/magick --strip-components=1
WORKDIR ${DEPS}/magick WORKDIR ${DEPS}/magick
RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-dependency-tracking --without-magick-plus-plus && make install-strip RUN ./configure --prefix=${TARGET} --enable-shared --disable-static --disable-dependency-tracking --without-magick-plus-plus && make install-strip