Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP 8.4.0beta5 #202

Merged
merged 6 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading