File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,19 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
14
14
mariadb-server libmariadbclient-dev \
15
15
postgresql postgresql-client postgresql-contrib libpq-dev \
16
16
redis-server memcached \
17
- imagemagick ffmpeg mupdf mupdf-tools libvips
17
+ ffmpeg mupdf mupdf-tools libvips poppler-utils
18
+
19
+
20
+ ARG IMAGEMAGICK_VERSION="7.1.0-5"
21
+ RUN wget -qO /tmp/im.tar.xz https://imagemagick.org/download/releases/ImageMagick-$IMAGEMAGICK_VERSION.tar.xz \
22
+ && wget -qO /tmp/im.sig https://imagemagick.org/download/releases/ImageMagick-$IMAGEMAGICK_VERSION.tar.xz.asc \
23
+ && gpg --batch --keyserver keyserver.ubuntu.com --recv 89AB63D48277377A \
24
+ && gpg --batch --verify /tmp/im.sig /tmp/im.tar.xz \
25
+ && tar xJf /tmp/im.tar.xz -C /tmp \
26
+ && cd /tmp/ImageMagick-$IMAGEMAGICK_VERSION \
27
+ && ./configure --with-rsvg && make -j 9 && make install \
28
+ && ldconfig /usr/local/lib \
29
+ && rm -rf /tmp/*
18
30
19
31
20
32
# [Optional] Uncomment this line to install additional gems.
You can’t perform that action at this time.
0 commit comments