We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b648d1 commit a570382Copy full SHA for a570382
1 file changed
Dockerfile
@@ -16,6 +16,8 @@ RUN apt-get update && apt-get install -y \
16
bzip2 \
17
busybox-static \
18
libmagickwand-dev \
19
+ imagemagick \
20
+ --no-install-recommends \
21
&& rm -rf /var/lib/apt/lists/*
22
RUN docker-php-ext-configure gd \
23
--with-freetype \
@@ -38,6 +40,7 @@ RUN docker-php-ext-install \
38
40
pdo_pgsql \
39
41
pgsql \
42
gettext
43
+RUN yes '' | pecl install imagick
44
RUN yes '' | pecl install apcu
45
RUN yes '' | pecl install memcached
46
RUN yes '' | pecl install redis
@@ -46,7 +49,8 @@ RUN docker-php-ext-enable \
49
apcu \
47
50
memcached \
48
51
redis \
- mcrypt
52
+ mcrypt \
53
+ imagick
54
RUN { \
55
echo 'opcache.enable=1'; \
56
echo 'opcache.enable_cli=1'; \
0 commit comments