Skip to content

Commit b693e9b

Browse files
authored
Merge branch 'master' into renovate/configure
2 parents d671fbf + 2307ab6 commit b693e9b

File tree

13 files changed

+19
-7
lines changed

13 files changed

+19
-7
lines changed

dist/base/7.4-cli-alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ RUN set -eux; \
4141
&& docker-php-ext-install -j$(nproc) pcntl \
4242
&& docker-php-ext-install -j$(nproc) --ini-name docker-php-ext-00-sockets.ini sockets \
4343
# MySQL
44+
&& docker-php-ext-install -j$(nproc) pdo_mysql \
4445
# Postgres; "postgresql-dev" is temporary build dependency
4546
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-dev \
4647
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-libs \
@@ -63,7 +64,7 @@ RUN set -eux; \
6364
&& apk add --no-cache \
6465
zstd-libs \
6566
zstd-dev \
66-
&& pecl install redis-5.3.5RC1 \
67+
&& pecl install redis-5.3.7 \
6768
&& docker-php-ext-enable redis \
6869
&& apk del zstd-dev \
6970
# Decimal - Correctly-rounded arbitrary precision decimal floating point arithmetic

dist/base/7.4-cli-alpine/goss.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ command:
4040
- intl
4141
- OPcache
4242
- pcntl
43+
- pdo_mysql
4344
- pdo_pgsql
4445
- redis
4546
- sockets

dist/base/7.4-fpm-alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ RUN set -eux; \
4242
&& docker-php-ext-install -j$(nproc) pcntl \
4343
&& docker-php-ext-install -j$(nproc) --ini-name docker-php-ext-00-sockets.ini sockets \
4444
# MySQL
45+
&& docker-php-ext-install -j$(nproc) pdo_mysql \
4546
# Postgres; "postgresql-dev" is temporary build dependency
4647
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-dev \
4748
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-libs \
@@ -64,7 +65,7 @@ RUN set -eux; \
6465
&& apk add --no-cache \
6566
zstd-libs \
6667
zstd-dev \
67-
&& pecl install redis-5.3.5RC1 \
68+
&& pecl install redis-5.3.7 \
6869
&& docker-php-ext-enable redis \
6970
&& apk del zstd-dev \
7071
# Decimal - Correctly-rounded arbitrary precision decimal floating point arithmetic

dist/base/7.4-fpm-alpine/goss.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ command:
5151
- intl
5252
- OPcache
5353
- pcntl
54+
- pdo_mysql
5455
- pdo_pgsql
5556
- redis
5657
- sockets

dist/base/8.0-cli-alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ RUN set -eux; \
4141
&& docker-php-ext-install -j$(nproc) pcntl \
4242
&& docker-php-ext-install -j$(nproc) --ini-name docker-php-ext-00-sockets.ini sockets \
4343
# MySQL
44+
&& docker-php-ext-install -j$(nproc) pdo_mysql \
4445
# Postgres; "postgresql-dev" is temporary build dependency
4546
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-dev \
4647
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-libs \
@@ -63,7 +64,7 @@ RUN set -eux; \
6364
&& apk add --no-cache \
6465
zstd-libs \
6566
zstd-dev \
66-
&& pecl install redis-5.3.5RC1 \
67+
&& pecl install redis-5.3.7 \
6768
&& docker-php-ext-enable redis \
6869
&& apk del zstd-dev \
6970
# Decimal - Correctly-rounded arbitrary precision decimal floating point arithmetic

dist/base/8.0-cli-alpine/goss.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ command:
4040
- intl
4141
- OPcache
4242
- pcntl
43+
- pdo_mysql
4344
- pdo_pgsql
4445
- redis
4546
- sockets

dist/base/8.0-fpm-alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ RUN set -eux; \
4242
&& docker-php-ext-install -j$(nproc) pcntl \
4343
&& docker-php-ext-install -j$(nproc) --ini-name docker-php-ext-00-sockets.ini sockets \
4444
# MySQL
45+
&& docker-php-ext-install -j$(nproc) pdo_mysql \
4546
# Postgres; "postgresql-dev" is temporary build dependency
4647
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-dev \
4748
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-libs \
@@ -64,7 +65,7 @@ RUN set -eux; \
6465
&& apk add --no-cache \
6566
zstd-libs \
6667
zstd-dev \
67-
&& pecl install redis-5.3.5RC1 \
68+
&& pecl install redis-5.3.7 \
6869
&& docker-php-ext-enable redis \
6970
&& apk del zstd-dev \
7071
# Decimal - Correctly-rounded arbitrary precision decimal floating point arithmetic

dist/base/8.0-fpm-alpine/goss.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ command:
5151
- intl
5252
- OPcache
5353
- pcntl
54+
- pdo_mysql
5455
- pdo_pgsql
5556
- redis
5657
- sockets

dist/base/8.1-cli-alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ RUN set -eux; \
4141
&& docker-php-ext-install -j$(nproc) pcntl \
4242
&& docker-php-ext-install -j$(nproc) --ini-name docker-php-ext-00-sockets.ini sockets \
4343
# MySQL
44+
&& docker-php-ext-install -j$(nproc) pdo_mysql \
4445
# Postgres; "postgresql-dev" is temporary build dependency
4546
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-dev \
4647
&& apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/3.16/main postgresql-libs \
@@ -63,7 +64,7 @@ RUN set -eux; \
6364
&& apk add --no-cache \
6465
zstd-libs \
6566
zstd-dev \
66-
&& pecl install redis-5.3.5RC1 \
67+
&& pecl install redis-5.3.7 \
6768
&& docker-php-ext-enable redis \
6869
&& apk del zstd-dev \
6970
# Decimal - Correctly-rounded arbitrary precision decimal floating point arithmetic

dist/base/8.1-cli-alpine/goss.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ command:
4040
- intl
4141
- OPcache
4242
- pcntl
43+
- pdo_mysql
4344
- pdo_pgsql
4445
- redis
4546
- sockets

0 commit comments

Comments
 (0)