Skip to content

Commit 9df21e4

Browse files
authored
Added amqp extension
1 parent fc9935a commit 9df21e4

File tree

12 files changed

+30
-18
lines changed

12 files changed

+30
-18
lines changed

php7.1/cli/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ RUN install-php-extensions \
4949
gd \
5050
imagick \
5151
apcu \
52+
amqp \
5253
@composer
5354

5455
# Installing other extensions but enabled dynamically

php7.1/fpm/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ RUN install-php-extensions \
3737
gd \
3838
imagick \
3939
apcu \
40+
amqp \
4041
@composer
4142

4243
# Installing other extensions but enabled dynamically
43-
RUN REDIS_DONT_ENABLE=0 install-php-extensions redis
44-
RUN MONGODB_DONT_ENABLE=0 install-php-extensions mongodb
45-
RUN XDEBUG_DONT_ENABLE=0 install-php-extensions xdebug
44+
RUN IPE_DONT_ENABLE=1 install-php-extensions redis \
45+
mongodb \
46+
xdebug
4647

4748
# Updating php.ini
4849
ADD conf/php.ini /usr/local/etc/php/php.ini

php7.2/cli/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ RUN install-php-extensions \
4949
gd \
5050
imagick \
5151
apcu \
52+
amqp \
5253
@composer
5354

5455
# Installing other extensions but enabled dynamically

php7.2/fpm/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ RUN install-php-extensions \
3737
gd \
3838
imagick \
3939
apcu \
40+
amqp \
4041
@composer
4142

4243
# Installing other extensions but enabled dynamically
43-
RUN REDIS_DONT_ENABLE=0 install-php-extensions redis
44-
RUN MONGODB_DONT_ENABLE=0 install-php-extensions mongodb
45-
RUN XDEBUG_DONT_ENABLE=0 install-php-extensions xdebug
44+
RUN IPE_DONT_ENABLE=1 install-php-extensions redis \
45+
mongodb \
46+
xdebug
4647

4748
# Updating php.ini
4849
ADD conf/php.ini /usr/local/etc/php/php.ini

php7.3/cli/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ RUN install-php-extensions \
4949
gd \
5050
imagick \
5151
apcu \
52+
amqp \
5253
@composer
5354

5455
# Installing other extensions but enabled dynamically

php7.3/fpm/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ RUN install-php-extensions \
3737
gd \
3838
imagick \
3939
apcu \
40+
amqp \
4041
@composer
4142

4243
# Installing other extensions but enabled dynamically
43-
RUN REDIS_DONT_ENABLE=0 install-php-extensions redis
44-
RUN MONGODB_DONT_ENABLE=0 install-php-extensions mongodb
45-
RUN XDEBUG_DONT_ENABLE=0 install-php-extensions xdebug
44+
RUN IPE_DONT_ENABLE=1 install-php-extensions redis \
45+
mongodb \
46+
xdebug
4647

4748
# Updating php.ini
4849
ADD conf/php.ini /usr/local/etc/php/php.ini

php7.4/cli/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ RUN install-php-extensions \
4949
gd \
5050
imagick \
5151
apcu \
52+
amqp \
5253
@composer
5354

5455
# Installing other extensions but enabled dynamically

php7.4/fpm/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ RUN install-php-extensions \
3737
gd \
3838
imagick \
3939
apcu \
40+
amqp \
4041
@composer
4142

4243
# Installing other extensions but enabled dynamically
43-
RUN REDIS_DONT_ENABLE=0 install-php-extensions redis
44-
RUN MONGODB_DONT_ENABLE=0 install-php-extensions mongodb
45-
RUN XDEBUG_DONT_ENABLE=0 install-php-extensions xdebug
44+
RUN IPE_DONT_ENABLE=1 install-php-extensions redis \
45+
mongodb \
46+
xdebug
4647

4748
# Updating php.ini
4849
ADD conf/php.ini /usr/local/etc/php/php.ini

php8.0/cli/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ RUN install-php-extensions \
4949
gd \
5050
imagick \
5151
apcu \
52+
amqp \
5253
@composer
5354

5455
# Installing other extensions but enabled dynamically

php8.0/fpm/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ RUN install-php-extensions \
3737
gd \
3838
imagick \
3939
apcu \
40+
amqp \
4041
@composer
4142

4243
# Installing other extensions but enabled dynamically
43-
RUN REDIS_DONT_ENABLE=0 install-php-extensions redis
44-
RUN MONGODB_DONT_ENABLE=0 install-php-extensions mongodb
45-
RUN XDEBUG_DONT_ENABLE=0 install-php-extensions xdebug
44+
RUN IPE_DONT_ENABLE=1 install-php-extensions redis \
45+
mongodb \
46+
xdebug
4647

4748
# Updating php.ini
4849
ADD conf/php.ini /usr/local/etc/php/php.ini

0 commit comments

Comments
 (0)