Skip to content

Commit

Permalink
add redis support to PHP
Browse files Browse the repository at this point in the history
  • Loading branch information
bwdutton authored and thomascube committed Nov 12, 2021
1 parent 08fa041 commit fe4d5fc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ RUN set -ex; \
zip \
pspell \
; \
pecl install imagick; \
docker-php-ext-enable imagick opcache; \
pecl install imagick redis; \
docker-php-ext-enable imagick opcache redis; \
\
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
apt-mark auto '.*' > /dev/null; \
Expand Down
4 changes: 2 additions & 2 deletions fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ RUN set -ex; \
zip \
pspell \
; \
pecl install imagick; \
docker-php-ext-enable imagick opcache; \
pecl install imagick redis; \
docker-php-ext-enable imagick opcache redis; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
Expand Down
4 changes: 2 additions & 2 deletions fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ RUN set -ex; \
zip \
pspell \
; \
pecl install imagick; \
docker-php-ext-enable imagick opcache; \
pecl install imagick redis; \
docker-php-ext-enable imagick opcache redis; \
\
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
apt-mark auto '.*' > /dev/null; \
Expand Down
4 changes: 2 additions & 2 deletions nightly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ RUN set -ex; \
pdo_sqlite \
zip \
; \
pecl install imagick; \
docker-php-ext-enable imagick; \
pecl install imagick redis; \
docker-php-ext-enable imagick opcache redis; \
\
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
apt-mark auto '.*' > /dev/null; \
Expand Down
4 changes: 2 additions & 2 deletions templates/Dockerfile-alpine.templ
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ RUN set -ex; \
zip \
pspell \
; \
pecl install imagick; \
docker-php-ext-enable imagick opcache; \
pecl install imagick redis; \
docker-php-ext-enable imagick opcache redis; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
Expand Down
4 changes: 2 additions & 2 deletions templates/Dockerfile-debian.templ
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ RUN set -ex; \
zip \
pspell \
; \
pecl install imagick; \
docker-php-ext-enable imagick opcache; \
pecl install imagick redis; \
docker-php-ext-enable imagick opcache redis; \
\
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
apt-mark auto '.*' > /dev/null; \
Expand Down

0 comments on commit fe4d5fc

Please sign in to comment.