You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Compile libwebp since AL2 ships with v0.3, and v0.4 or higher is required to builder the other libs
12
12
WORKDIR ${IMAGICK_BUILD_DIR}
13
-
RUN curl -Ls -o libwebp.tar.gz https://github.com/webmproject/libwebp/archive/refs/tags/v1.5.0.tar.gz
13
+
RUN curl -Ls -o libwebp.tar.gz https://github.com/webmproject/libwebp/archive/refs/tags/v1.4.0.tar.gz
14
14
RUN tar xzf libwebp.tar.gz
15
-
WORKDIR ${IMAGICK_BUILD_DIR}/libwebp-1.5.0
15
+
WORKDIR ${IMAGICK_BUILD_DIR}/libwebp-1.4.0
16
16
RUN autoreconf -i && automake && autoconf
17
17
RUN ./configure --prefix ${INSTALL_DIR} --exec-prefix ${INSTALL_DIR}
18
18
RUN make -j $(nproc) && make install
@@ -26,22 +26,22 @@ RUN make -j $(nproc) && make install
26
26
27
27
# Compile libheif
28
28
WORKDIR ${IMAGICK_BUILD_DIR}
29
-
RUN curl -Ls -o libheif.tar.gz https://github.com/strukturag/libheif/releases/download/v1.19.5/libheif-1.13.0.tar.gz && tar xzf libheif.tar.gz
30
-
WORKDIR ${IMAGICK_BUILD_DIR}/libheif-1.19.5
29
+
RUN curl -Ls -o libheif.tar.gz https://github.com/strukturag/libheif/releases/download/v1.13.0/libheif-1.13.0.tar.gz && tar xzf libheif.tar.gz
30
+
WORKDIR ${IMAGICK_BUILD_DIR}/libheif-1.13.0
31
31
RUN ./configure --prefix ${INSTALL_DIR} --exec-prefix ${INSTALL_DIR}
32
32
RUN make -j $(nproc) && make install
33
33
34
34
# Compile gs
35
35
WORKDIR ${IMAGICK_BUILD_DIR}
36
-
RUN curl -Ls -o ghostscript.tar.gz https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9561/ghostscript-10.04.0.tar.gz && tar xzf ghostscript.tar.gz
37
-
WORKDIR ${IMAGICK_BUILD_DIR}/ghostscript-10.04.0
36
+
RUN curl -Ls -o ghostscript.tar.gz https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9561/ghostscript-9.56.1.tar.gz && tar xzf ghostscript.tar.gz
37
+
WORKDIR ${IMAGICK_BUILD_DIR}/ghostscript-9.56.1
38
38
RUN ./configure --prefix ${INSTALL_DIR} --exec-prefix ${INSTALL_DIR} --without-x
39
39
RUN make -j $(nproc) && cp bin/gs /tmp/gs
40
40
41
41
# Compile the ImageMagick library
42
42
WORKDIR ${IMAGICK_BUILD_DIR}
43
-
RUN curl -Ls -o ImageMagick.tar.gz https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.1-43.tar.gz && tar xzf ImageMagick.tar.gz
44
-
WORKDIR ${IMAGICK_BUILD_DIR}/ImageMagick-7.1.1-43
43
+
RUN curl -Ls -o ImageMagick.tar.gz https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.1-38.tar.gz && tar xzf ImageMagick.tar.gz
44
+
WORKDIR ${IMAGICK_BUILD_DIR}/ImageMagick-7.1.1-38
45
45
RUN ./configure --prefix ${INSTALL_DIR} --exec-prefix ${INSTALL_DIR} --with-webp --with-heic --disable-static --with-freetype=yes
0 commit comments