This commit is contained in:
José Henrique 2023-09-28 21:03:32 -03:00
parent 2e3398f683
commit 4fa2ae956f
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,8 @@ FROM debian:bullseye-slim
ENV MAGICK_VERSION 7.1 ENV MAGICK_VERSION 7.1
RUN curl https://imagemagick.org/archive/ImageMagick.tar.gz | tar xz \ RUN apt update && apt install curl -y \
&& curl https://imagemagick.org/archive/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 \