我想安装 imagemagick v7。我需要将命令添加到我的 Dockerfile 中。
该命令安装v6.9,该版本没有magick命令
RUN apt-get update && apt-get install -y --no-install-recommends imagemagick
Run Code Online (Sandbox Code Playgroud)
谁能帮我找到如何安装 imagemagick v7 来使用 magick 命令?非常感谢
RUN apt-get update && apt-get install -y wget && \
apt-get install -y autoconf pkg-config
RUN apt-get update && apt-get install -y wget && \
apt-get install -y build-essential curl libpng-dev && \
wget https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.0-31.tar.gz && \
tar xzf 7.1.0-31.tar.gz && \
rm 7.1.0-31.tar.gz && \
apt-get clean && \
apt-get autoremove
RUN sh ./ImageMagick-7.1.0-31/configure --prefix=/usr/local --with-bzlib=yes --with-fontconfig=yes --with-freetype=yes --with-gslib=yes --with-gvc=yes --with-jpeg=yes --with-jp2=yes --with-png=yes --with-tiff=yes --with-xml=yes --with-gs-font-dir=yes && \
make -j && make install && ldconfig /usr/local/lib/
Run Code Online (Sandbox Code Playgroud)
你可以更改你想要的版本