Skip to content

Commit

Permalink
Upgraded pecl extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
fox91 committed Nov 27, 2023
1 parent 1782da7 commit 3ffcf7f
Show file tree
Hide file tree
Showing 73 changed files with 84 additions and 84 deletions.
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.11.0.3
ARG PHPEXT_NEWRELIC_VERSION=10.14.0.3
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_amqp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-amqp
ARG PHPEXT_AMQP_VERSION=1.11.0
ARG PHPEXT_AMQP_VERSION=2.1.1
RUN set -eux; \
persistentDeps=" \
rabbitmq-c \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_apcu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-apcu
ARG PHPEXT_APCU_VERSION=5.1.22
ARG PHPEXT_APCU_VERSION=5.1.23
RUN set -eux; \
pecl bundle -d /usr/src/php/ext apcu-${PHPEXT_APCU_VERSION}; \
docker-php-ext-install -j$(nproc) apcu; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_ast/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-ast
ARG PHPEXT_AST_VERSION=1.1.0
ARG PHPEXT_AST_VERSION=1.1.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext ast-${PHPEXT_AST_VERSION}; \
docker-php-ext-install -j$(nproc) ast; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.56.0
ARG PHPEXT_GRPC_VERSION=1.59.1
RUN set -eux; \
persistentDeps=" \
libstdc++ \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_mailparse/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mailparse
ARG PHPEXT_MAILPARSE_VERSION=3.1.4
ARG PHPEXT_MAILPARSE_VERSION=3.1.6
RUN set -eux; \
pecl bundle -d /usr/src/php/ext mailparse-${PHPEXT_MAILPARSE_VERSION}; \
docker-php-ext-install -j$(nproc) mailparse; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_mongodb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mongodb
ARG PHPEXT_MONGODB_VERSION=1.16.1
ARG PHPEXT_MONGODB_VERSION=1.17.0
RUN set -eux; \
persistentDeps=" \
openssl \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_protobuf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-protobuf
ARG PHPEXT_PROTOBUF_VERSION=3.23.4
ARG PHPEXT_PROTOBUF_VERSION=3.25.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext protobuf-${PHPEXT_PROTOBUF_VERSION}; \
docker-php-ext-install -j$(nproc) protobuf; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_redis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-redis
ARG PHPEXT_REDIS_VERSION=5.3.7
ARG PHPEXT_REDIS_VERSION=6.0.2
RUN set -eux; \
pecl bundle -d /usr/src/php/ext redis-${PHPEXT_REDIS_VERSION}; \
docker-php-ext-install -j$(nproc) redis; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.1
ARG PHPEXT_XDEBUG_VERSION=3.2.2
RUN set -eux; \
buildDeps=" \
linux-headers \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_zip/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-zip
ARG PHPEXT_ZIP_VERSION=1.22.1
ARG PHPEXT_ZIP_VERSION=1.22.3
RUN set -eux; \
persistentDeps=" \
libzip \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/alpine3.16/pecl_zstd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-alpine3.16
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-zstd
ARG PHPEXT_ZSTD_VERSION=0.12.3
ARG PHPEXT_ZSTD_VERSION=0.13.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext zstd-${PHPEXT_ZSTD_VERSION}; \
docker-php-ext-install -j$(nproc) zstd; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.11.0.3
ARG PHPEXT_NEWRELIC_VERSION=10.14.0.3
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_amqp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-amqp
ARG PHPEXT_AMQP_VERSION=1.11.0
ARG PHPEXT_AMQP_VERSION=2.1.1
RUN set -eux; \
persistentDeps=" \
librabbitmq4 \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_apcu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-apcu
ARG PHPEXT_APCU_VERSION=5.1.22
ARG PHPEXT_APCU_VERSION=5.1.23
RUN set -eux; \
pecl bundle -d /usr/src/php/ext apcu-${PHPEXT_APCU_VERSION}; \
docker-php-ext-install -j$(nproc) apcu; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_ast/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-ast
ARG PHPEXT_AST_VERSION=1.1.0
ARG PHPEXT_AST_VERSION=1.1.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext ast-${PHPEXT_AST_VERSION}; \
docker-php-ext-install -j$(nproc) ast; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.56.0
ARG PHPEXT_GRPC_VERSION=1.59.1
RUN set -eux; \
buildDeps=" \
libzip-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_mailparse/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mailparse
ARG PHPEXT_MAILPARSE_VERSION=3.1.4
ARG PHPEXT_MAILPARSE_VERSION=3.1.6
RUN set -eux; \
pecl bundle -d /usr/src/php/ext mailparse-${PHPEXT_MAILPARSE_VERSION}; \
docker-php-ext-install -j$(nproc) mailparse; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_mongodb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mongodb
ARG PHPEXT_MONGODB_VERSION=1.16.1
ARG PHPEXT_MONGODB_VERSION=1.17.0
RUN set -eux; \
buildDeps=" \
libssl-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_protobuf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-protobuf
ARG PHPEXT_PROTOBUF_VERSION=3.23.4
ARG PHPEXT_PROTOBUF_VERSION=3.25.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext protobuf-${PHPEXT_PROTOBUF_VERSION}; \
docker-php-ext-install -j$(nproc) protobuf; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_redis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-redis
ARG PHPEXT_REDIS_VERSION=5.3.7
ARG PHPEXT_REDIS_VERSION=6.0.2
RUN set -eux; \
pecl bundle -d /usr/src/php/ext redis-${PHPEXT_REDIS_VERSION}; \
docker-php-ext-install -j$(nproc) redis; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.1
ARG PHPEXT_XDEBUG_VERSION=3.2.2
RUN set -eux; \
pecl bundle -d /usr/src/php/ext xdebug-${PHPEXT_XDEBUG_VERSION}; \
docker-php-ext-install -j$(nproc) xdebug; \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_zip/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-zip
ARG PHPEXT_ZIP_VERSION=1.22.1
ARG PHPEXT_ZIP_VERSION=1.22.3
RUN set -eux; \
persistentDeps=" \
libzip4 \
Expand Down
2 changes: 1 addition & 1 deletion 8.0/bullseye/pecl_zstd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.0-bullseye
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-zstd
ARG PHPEXT_ZSTD_VERSION=0.12.3
ARG PHPEXT_ZSTD_VERSION=0.13.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext zstd-${PHPEXT_ZSTD_VERSION}; \
docker-php-ext-install -j$(nproc) zstd; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.11.0.3
ARG PHPEXT_NEWRELIC_VERSION=10.14.0.3
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/release/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux-musl.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_amqp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-amqp
ARG PHPEXT_AMQP_VERSION=1.11.0
ARG PHPEXT_AMQP_VERSION=2.1.1
RUN set -eux; \
persistentDeps=" \
rabbitmq-c \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_apcu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-apcu
ARG PHPEXT_APCU_VERSION=5.1.22
ARG PHPEXT_APCU_VERSION=5.1.23
RUN set -eux; \
pecl bundle -d /usr/src/php/ext apcu-${PHPEXT_APCU_VERSION}; \
docker-php-ext-install -j$(nproc) apcu; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_ast/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-ast
ARG PHPEXT_AST_VERSION=1.1.0
ARG PHPEXT_AST_VERSION=1.1.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext ast-${PHPEXT_AST_VERSION}; \
docker-php-ext-install -j$(nproc) ast; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.56.0
ARG PHPEXT_GRPC_VERSION=1.59.1
RUN set -eux; \
persistentDeps=" \
libstdc++ \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_mailparse/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mailparse
ARG PHPEXT_MAILPARSE_VERSION=3.1.4
ARG PHPEXT_MAILPARSE_VERSION=3.1.6
RUN set -eux; \
pecl bundle -d /usr/src/php/ext mailparse-${PHPEXT_MAILPARSE_VERSION}; \
docker-php-ext-install -j$(nproc) mailparse; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_mongodb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mongodb
ARG PHPEXT_MONGODB_VERSION=1.16.1
ARG PHPEXT_MONGODB_VERSION=1.17.0
RUN set -eux; \
persistentDeps=" \
openssl \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_protobuf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-protobuf
ARG PHPEXT_PROTOBUF_VERSION=3.23.4
ARG PHPEXT_PROTOBUF_VERSION=3.25.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext protobuf-${PHPEXT_PROTOBUF_VERSION}; \
docker-php-ext-install -j$(nproc) protobuf; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_redis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-redis
ARG PHPEXT_REDIS_VERSION=5.3.7
ARG PHPEXT_REDIS_VERSION=6.0.2
RUN set -eux; \
pecl bundle -d /usr/src/php/ext redis-${PHPEXT_REDIS_VERSION}; \
docker-php-ext-install -j$(nproc) redis; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_xdebug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-xdebug
ARG PHPEXT_XDEBUG_VERSION=3.2.1
ARG PHPEXT_XDEBUG_VERSION=3.2.2
RUN set -eux; \
buildDeps=" \
linux-headers \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_zip/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-zip
ARG PHPEXT_ZIP_VERSION=1.22.1
ARG PHPEXT_ZIP_VERSION=1.22.3
RUN set -eux; \
persistentDeps=" \
libzip \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/alpine3.18/pecl_zstd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-alpine3.18
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-zstd
ARG PHPEXT_ZSTD_VERSION=0.12.3
ARG PHPEXT_ZSTD_VERSION=0.13.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext zstd-${PHPEXT_ZSTD_VERSION}; \
docker-php-ext-install -j$(nproc) zstd; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/newrelic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-newrelic
ARG PHPEXT_NEWRELIC_VERSION=10.11.0.3
ARG PHPEXT_NEWRELIC_VERSION=10.14.0.3
RUN set -eux; \
curl -fsSL https://download.newrelic.com/php_agent/archive/${PHPEXT_NEWRELIC_VERSION}/newrelic-php5-${PHPEXT_NEWRELIC_VERSION}-linux.tar.gz \
| tar -xzC /tmp; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_amqp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-amqp
ARG PHPEXT_AMQP_VERSION=1.11.0
ARG PHPEXT_AMQP_VERSION=2.1.1
RUN set -eux; \
persistentDeps=" \
librabbitmq4 \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_apcu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-apcu
ARG PHPEXT_APCU_VERSION=5.1.22
ARG PHPEXT_APCU_VERSION=5.1.23
RUN set -eux; \
pecl bundle -d /usr/src/php/ext apcu-${PHPEXT_APCU_VERSION}; \
docker-php-ext-install -j$(nproc) apcu; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_ast/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-ast
ARG PHPEXT_AST_VERSION=1.1.0
ARG PHPEXT_AST_VERSION=1.1.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext ast-${PHPEXT_AST_VERSION}; \
docker-php-ext-install -j$(nproc) ast; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-grpc
ARG PHPEXT_GRPC_VERSION=1.56.0
ARG PHPEXT_GRPC_VERSION=1.59.1
RUN set -eux; \
buildDeps=" \
libzip-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_mailparse/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mailparse
ARG PHPEXT_MAILPARSE_VERSION=3.1.4
ARG PHPEXT_MAILPARSE_VERSION=3.1.6
RUN set -eux; \
pecl bundle -d /usr/src/php/ext mailparse-${PHPEXT_MAILPARSE_VERSION}; \
docker-php-ext-install -j$(nproc) mailparse; \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_mongodb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-mongodb
ARG PHPEXT_MONGODB_VERSION=1.16.1
ARG PHPEXT_MONGODB_VERSION=1.17.0
RUN set -eux; \
buildDeps=" \
libssl-dev \
Expand Down
2 changes: 1 addition & 1 deletion 8.1/bookworm/pecl_protobuf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.1-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"

# PHP ext-protobuf
ARG PHPEXT_PROTOBUF_VERSION=3.23.4
ARG PHPEXT_PROTOBUF_VERSION=3.25.1
RUN set -eux; \
pecl bundle -d /usr/src/php/ext protobuf-${PHPEXT_PROTOBUF_VERSION}; \
docker-php-ext-install -j$(nproc) protobuf; \
Expand Down
Loading

0 comments on commit 3ffcf7f

Please sign in to comment.