Skip to content

Commit

Permalink
Merge pull request #202 from GrahamCampbell/php-8.4.0beta5
Browse files Browse the repository at this point in the history
PHP 8.4.0beta5
  • Loading branch information
mnapoli authored Sep 22, 2024
2 parents 2695018 + 2072e7d commit 9257085
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion php-80/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ RUN set -xe; \

# Install extensions
# We can install extensions manually or using `pecl`
RUN pecl install APCu
ENV VERSION_APCU=5.1.24
RUN pecl install apcu-${VERSION_APCU}


# ---------------------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion php-81/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,8 @@ RUN set -xe; \

# Install extensions
# We can install extensions manually or using `pecl`
RUN pecl install APCu
ENV VERSION_APCU=5.1.24
RUN pecl install apcu-${VERSION_APCU}


# ---------------------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion php-82/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,8 @@ RUN set -xe; \

# Install extensions
# We can install extensions manually or using `pecl`
RUN pecl install APCu
ENV VERSION_APCU=5.1.24
RUN pecl install apcu-${VERSION_APCU}


# ---------------------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion php-83/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,8 @@ RUN set -xe; \

# Install extensions
# We can install extensions manually or using `pecl`
RUN pecl install APCu
ENV VERSION_APCU=5.1.24
RUN pecl install apcu-${VERSION_APCU}


# ---------------------------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions php-84/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
ARG IMAGE_VERSION_SUFFIX

# https://www.php.net/downloads
ARG RELEASE_USER_PHP=saki
ARG VERSION_PHP=8.4.0beta4
ARG RELEASE_USER_PHP=calvinb
ARG VERSION_PHP=8.4.0beta5


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

# Install extensions
# We can install extensions manually or using `pecl`
RUN pecl install APCu
ENV VERSION_APCU=5.1.24
RUN pecl install apcu-${VERSION_APCU}


# ---------------------------------------------------------------
Expand Down

0 comments on commit 9257085

Please sign in to comment.