File tree 4 files changed +16
-8
lines changed
4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ RUN apk add --no-cache \
7
7
# BusyBox sed is not sufficient for some of our sed expressions
8
8
sed \
9
9
# Ghostscript is required for rendering PDF previews
10
- ghostscript
10
+ ghostscript \
11
+ # Alpine package for "imagemagick" contains ~120 .so files, see: https://github.com/docker-library/wordpress/pull/497
12
+ imagemagick
11
13
12
14
# install the PHP extensions we need (https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions)
13
15
RUN set -ex; \
@@ -39,7 +41,7 @@ RUN set -ex; \
39
41
| sort -u \
40
42
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
41
43
)"; \
42
- apk add --virtual .wordpress-phpexts-rundeps $runDeps imagemagick ; \
44
+ apk add --virtual .wordpress-phpexts-rundeps $runDeps; \
43
45
apk del .build-deps
44
46
45
47
# set recommended PHP.ini settings
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ RUN apk add --no-cache \
7
7
# BusyBox sed is not sufficient for some of our sed expressions
8
8
sed \
9
9
# Ghostscript is required for rendering PDF previews
10
- ghostscript
10
+ ghostscript \
11
+ # Alpine package for "imagemagick" contains ~120 .so files, see: https://github.com/docker-library/wordpress/pull/497
12
+ imagemagick
11
13
12
14
# install the PHP extensions we need (https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions)
13
15
RUN set -ex; \
@@ -38,7 +40,7 @@ RUN set -ex; \
38
40
| sort -u \
39
41
| awk 'system(" [ -e /usr/local/lib/" $1 " ]") == 0 { next } { print " so:" $1 }' \
40
42
)" ; \
41
- apk add --virtual .wordpress-phpexts-rundeps $runDeps imagemagick ; \
43
+ apk add --virtual .wordpress-phpexts-rundeps $runDeps; \
42
44
apk del .build-deps
43
45
44
46
# set recommended PHP.ini settings
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ RUN apk add --no-cache \
7
7
# BusyBox sed is not sufficient for some of our sed expressions
8
8
sed \
9
9
# Ghostscript is required for rendering PDF previews
10
- ghostscript
10
+ ghostscript \
11
+ # Alpine package for "imagemagick" contains ~120 .so files, see: https://github.com/docker-library/wordpress/pull/497
12
+ imagemagick
11
13
12
14
# install the PHP extensions we need (https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions)
13
15
RUN set -ex; \
@@ -39,7 +41,7 @@ RUN set -ex; \
39
41
| sort -u \
40
42
| awk 'system(" [ -e /usr/local/lib/" $1 " ]") == 0 { next } { print " so:" $1 }' \
41
43
)" ; \
42
- apk add --virtual .wordpress-phpexts-rundeps $runDeps imagemagick ; \
44
+ apk add --virtual .wordpress-phpexts-rundeps $runDeps; \
43
45
apk del .build-deps
44
46
45
47
# set recommended PHP.ini settings
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ RUN apk add --no-cache \
7
7
# BusyBox sed is not sufficient for some of our sed expressions
8
8
sed \
9
9
# Ghostscript is required for rendering PDF previews
10
- ghostscript
10
+ ghostscript \
11
+ # Alpine package for "imagemagick" contains ~120 .so files, see: https://github.com/docker-library/wordpress/pull/497
12
+ imagemagick
11
13
12
14
# install the PHP extensions we need (https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions)
13
15
RUN set -ex; \
@@ -39,7 +41,7 @@ RUN set -ex; \
39
41
| sort -u \
40
42
| awk 'system(" [ -e /usr/local/lib/" $1 " ]") == 0 { next } { print " so:" $1 }' \
41
43
)" ; \
42
- apk add --virtual .wordpress-phpexts-rundeps $runDeps imagemagick ; \
44
+ apk add --virtual .wordpress-phpexts-rundeps $runDeps; \
43
45
apk del .build-deps
44
46
45
47
# set recommended PHP.ini settings
You can’t perform that action at this time.
0 commit comments