Skip to content

Instantly share code, notes, and snippets.

@buth
Last active November 9, 2022 21:10
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save buth/1291c75b1414dd7cea21 to your computer and use it in GitHub Desktop.
Save buth/1291c75b1414dd7cea21 to your computer and use it in GitHub Desktop.
Docker Install ImageMagick
RUN \
curl -sfLO http://www.imagemagick.org/download/ImageMagick-6.9.0-4.tar.gz && \
echo 'cf51a1c6ebf627c627a8e6ac20aecce5f1425907c2cdb98c5a60f329c5c6caf2 ImageMagick-6.9.0-4.tar.gz' | sha256sum -c - && \
tar -xzf ImageMagick-6.9.0-4.tar.gz && \
cd ImageMagick-6.9.0-4 && \
./configure --prefix /usr/local && \
make install && \
cd .. && \
rm -rf ImageMagick*
@DenisBalan
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment