File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,10 @@ RUN apt-get update && apt-get install -y \
1616 wget \
1717 git
1818
19- RUN pecl install memcache \
20- && pecl install mongo \
21- && pecl install redis \
19+ RUN pecl install \
20+ memcache \
21+ mongo \
22+ redis \
2223 && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
2324 && docker-php-ext-install -j$(nproc) \
2425 gd \
Original file line number Diff line number Diff line change @@ -16,8 +16,9 @@ RUN apt-get update && apt-get install -y \
1616 wget \
1717 git
1818
19- RUN pecl install mongodb \
20- && pecl install redis \
19+ RUN pecl install \
20+ mongodb \
21+ redis \
2122 && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
2223 && docker-php-ext-install -j$(nproc) \
2324 gd \
@@ -29,6 +30,7 @@ RUN pecl install mongodb \
2930 pdo_mysql \
3031 zip \
3132 sockets \
33+ soap \
3234 && docker-php-ext-enable \
3335 opcache \
3436 mongodb \
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ RUN pecl install \
3030 pdo_mysql \
3131 zip \
3232 sockets \
33+ soap \
3334 && docker-php-ext-enable \
3435 opcache \
3536 mongodb \
You can’t perform that action at this time.
0 commit comments