0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-08 08:09:14 -05:00

Fix imagemagick version on dockerfile.

This commit is contained in:
Andrey Antukh 2017-02-14 18:23:07 +01:00
parent f50b82d81c
commit f52d886b04
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -42,14 +42,14 @@ RUN apt-get update -yq && \
libwmf-dev libpango1.0-dev librsvg2-bin librsvg2-dev \
libxml2-dev libwebp-dev webp
RUN wget http://mirror.checkdomain.de/imagemagick/releases/ImageMagick-7.0.4-6.tar.xz && \
tar xvf ImageMagick-7.0.4-6.tar.xz && \
cd ./ImageMagick-7.0.4-6 && \
RUN wget http://mirror.checkdomain.de/imagemagick/releases/ImageMagick-7.0.4-7.tar.xz && \
tar xvf ImageMagick-7.0.4-7.tar.xz && \
cd ./ImageMagick-7.0.4-7 && \
./configure --prefix=/opt/img && \
make -j2 && \
make install && \
cd .. && \
rm -rf ./ImageMagick-7.0.4-6.tar.xz ./ImageMagick-7.0.4-6
rm -rf ./ImageMagick-7.0.4-7.tar.xz ./ImageMagick-7.0.4-7
EXPOSE 3449
EXPOSE 6060