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
Copy file name to clipboardexpand all lines: Dockerfile
+16-1
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,22 @@ RUN set -eux; \
49
49
\
50
50
# Install PHP extensions
51
51
docker-php-ext-install ${PHP_EXTS}; \
52
-
pecl install imagick; \
52
+
#pecl install imagick; \
53
+
# WARNING: imagick is likely not supported on Alpine: https://github.com/Imagick/imagick/issues/328
54
+
# https://pecl.php.net/package/imagick
55
+
# https://github.com/Imagick/imagick/commit/5ae2ecf20a1157073bad0170106ad0cf74e01cb6 (causes a lot of build failures, but strangely only intermittent ones)
56
+
# see also https://github.com/Imagick/imagick/pull/641
57
+
# this is "pecl install imagick-3.7.0", but by hand so we can apply a small hack / part of the above commit
58
+
# Thanks to @tianon https://github.com/docker-library/wordpress/commit/509adb58cbc7463a03e317931df65868ec8a3e92
0 commit comments