Skip to content

Commit 9257085

Browse files
authored
Merge pull request #202 from GrahamCampbell/php-8.4.0beta5
PHP 8.4.0beta5
2 parents 2695018 + 2072e7d commit 9257085

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

php-80/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,8 @@ RUN set -xe; \
464464

465465
# Install extensions
466466
# We can install extensions manually or using `pecl`
467-
RUN pecl install APCu
467+
ENV VERSION_APCU=5.1.24
468+
RUN pecl install apcu-${VERSION_APCU}
468469

469470

470471
# ---------------------------------------------------------------

php-81/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,8 @@ RUN set -xe; \
465465

466466
# Install extensions
467467
# We can install extensions manually or using `pecl`
468-
RUN pecl install APCu
468+
ENV VERSION_APCU=5.1.24
469+
RUN pecl install apcu-${VERSION_APCU}
469470

470471

471472
# ---------------------------------------------------------------

php-82/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,8 @@ RUN set -xe; \
484484

485485
# Install extensions
486486
# We can install extensions manually or using `pecl`
487-
RUN pecl install APCu
487+
ENV VERSION_APCU=5.1.24
488+
RUN pecl install apcu-${VERSION_APCU}
488489

489490

490491
# ---------------------------------------------------------------

php-83/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,8 @@ RUN set -xe; \
484484

485485
# Install extensions
486486
# We can install extensions manually or using `pecl`
487-
RUN pecl install APCu
487+
ENV VERSION_APCU=5.1.24
488+
RUN pecl install apcu-${VERSION_APCU}
488489

489490

490491
# ---------------------------------------------------------------

php-84/Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG RELEASE_USER_PHP=saki
8-
ARG VERSION_PHP=8.4.0beta4
7+
ARG RELEASE_USER_PHP=calvinb
8+
ARG VERSION_PHP=8.4.0beta5
99

1010

1111
# Lambda uses a custom AMI named Amazon Linux 2
@@ -487,7 +487,8 @@ RUN set -xe; \
487487

488488
# Install extensions
489489
# We can install extensions manually or using `pecl`
490-
RUN pecl install APCu
490+
ENV VERSION_APCU=5.1.24
491+
RUN pecl install apcu-${VERSION_APCU}
491492

492493

493494
# ---------------------------------------------------------------

0 commit comments

Comments
 (0)