Skip to content
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
2 changes: 1 addition & 1 deletion php-83/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG IMAGE_VERSION_SUFFIX

# https://www.php.net/downloads
ARG VERSION_PHP=8.3.24
ARG VERSION_PHP=8.3.25


# Lambda uses a custom AMI named Amazon Linux 2023
Expand Down
2 changes: 1 addition & 1 deletion php-84/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG IMAGE_VERSION_SUFFIX

# https://www.php.net/downloads
ARG VERSION_PHP=8.4.11
ARG VERSION_PHP=8.4.12


# Lambda uses a custom AMI named Amazon Linux 2023
Expand Down
4 changes: 2 additions & 2 deletions php-85/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG IMAGE_VERSION_SUFFIX

# https://www.php.net/downloads
ARG VERSION_PHP=8.5.0beta1
ARG VERSION_PHP=8.5.0beta2


# Lambda uses a custom AMI named Amazon Linux 2023
Expand Down Expand Up @@ -113,7 +113,7 @@ WORKDIR ${PHP_BUILD_DIR}
# --silent will hide the progress, but also the errors: we restore error messages with --show-error
# --fail makes sure that curl returns an error instead of fetching the 404 page
ARG VERSION_PHP
RUN curl --location --silent --show-error --fail https://downloads.php.net/~edorian/php-${VERSION_PHP}.tar.gz \
RUN curl --location --silent --show-error --fail https://downloads.php.net/~daniels/php-${VERSION_PHP}.tar.gz \
| tar xzC . --strip-components=1

# Configure the build
Expand Down
Loading