Skip to content

Commit 61c8272

Browse files
committed
Add php apcu
1 parent 6b4819f commit 61c8272

File tree

14 files changed

+40
-6
lines changed

14 files changed

+40
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This project adheres to [WebDevOps.io Dockerfile](https://github.com/webdevops/D
44

55
## [1.0.0] - upcoming
66

7+
## [0.50.7] - upcoming
8+
### Added
9+
- Added php module apcu
10+
711
## [0.50.6] - 2016-06-14
812
### Changed
913
- Switch from dotdeb to sury and install libpcre3 from testing

docker/php/alpine-3-php7/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN /usr/local/bin/apk-install \
4949
php7-xmlreader \
5050
php7-exif \
5151
php7-ftp \
52-
php7-gettext \
52+
php7-gemttext \
5353
php7-iconv \
5454
php7-zip \
5555
php7-zlib \
@@ -69,6 +69,7 @@ RUN /usr/local/bin/apk-install \
6969
php7-opcache \
7070
php7-mbstring \
7171
php7-iconv \
72+
php7-apcu \
7273
&& ln -s /usr/bin/php7 /usr/bin/php \
7374
&& ln -s /usr/sbin/php-fpm7 /usr/sbin/php-fpm \
7475
&& pear channel-update pear.php.net \

docker/php/alpine-3/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ RUN /usr/local/bin/apk-install \
6565
php-pear \
6666
php-phar \
6767
php-openssl \
68+
php-apcu \
6869
&& pear channel-update pear.php.net \
6970
&& pear upgrade-all \
7071
&& pear config-set auto_discover 1 \

docker/php/centos-7/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ RUN /usr/local/bin/yum-install \
4545
ImageMagick-devel \
4646
ImageMagick-perl \
4747
php-pear \
48+
php-pecl-apcu \
4849
php-devel \
4950
gcc \
5051
php-pear \

docker/php/debian-8-php7/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ RUN /usr/local/bin/apt-install apt-transport-https lsb-release \
5454
php7.0-soap \
5555
php7.0-bcmath \
5656
php7.0-mbstring \
57+
php-apcu \
5758
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer \
5859
&& /opt/docker/bin/provision run --tag bootstrap --role webdevops-php \
5960
&& /opt/docker/bin/bootstrap.sh

docker/php/debian-8/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ RUN /usr/local/bin/apt-install \
3939
php5-memcached \
4040
php5-imagick \
4141
php5-redis \
42+
php5-apcu \
4243
php-pear \
4344
&& pear channel-update pear.php.net \
4445
&& pear upgrade-all \

docker/php/debian-9/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN /usr/local/bin/apt-install \
4040
php7.0-xmlrpc \
4141
php7.0-xsl \
4242
php7.0-bz2 \
43+
php-apcu \
4344
php-redis \
4445
php-memcache \
4546
php-memcached \

docker/php/ubuntu-14.04/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ RUN /usr/local/bin/apt-install \
3939
php5-memcached \
4040
php5-imagick \
4141
php5-redis \
42+
php5-apcu \
4243
php-pear \
4344
&& pear channel-update pear.php.net \
4445
&& pear upgrade-all \

docker/php/ubuntu-15.04/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ RUN /usr/local/bin/apt-install \
3939
php5-memcached \
4040
php5-imagick \
4141
php5-redis \
42+
php5-apcu \
4243
php-pear \
4344
&& pear channel-update pear.php.net \
4445
&& pear upgrade-all \

docker/php/ubuntu-15.10/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ RUN /usr/local/bin/apt-install \
3939
php5-memcached \
4040
php5-imagick \
4141
php5-redis \
42+
php5-apcu \
4243
php-pear \
4344
&& pear channel-update pear.php.net \
4445
&& pear upgrade-all \

0 commit comments

Comments
 (0)