Skip to content

Commit 12a8aaa

Browse files
committed
Upgrade versions in v3
1 parent d96dcf9 commit 12a8aaa

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

php-82/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RUN mkdir -p ${BUILD_DIR} \
7070
# Needed by:
7171
# - php
7272
RUN LD_LIBRARY_PATH= dnf install -y tcl
73-
ENV VERSION_SQLITE=3.50.4
73+
ENV VERSION_SQLITE=3.51.1
7474
ENV SQLITE_BUILD_DIR=${BUILD_DIR}/sqlite
7575
RUN set -xe; \
7676
mkdir -p ${SQLITE_BUILD_DIR}; \
@@ -179,7 +179,7 @@ RUN set -xe; \
179179
# Install extensions
180180
# We can install extensions manually or using `pecl`
181181
RUN pecl install APCu
182-
RUN pecl install redis-6.2.0
182+
RUN pecl install redis-6.3.0
183183

184184

185185
# ---------------------------------------------------------------
@@ -238,7 +238,7 @@ FROM build-environment as build_dev
238238
RUN mkdir -p /opt/bref/extensions
239239

240240
# Install xdebug
241-
RUN pecl install xdebug-3.4.2
241+
RUN pecl install xdebug-3.4.7
242242
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
243243

244244

php-83/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.3.26
7+
ARG VERSION_PHP=8.3.28
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -70,7 +70,7 @@ RUN mkdir -p ${BUILD_DIR} \
7070
# Needed by:
7171
# - php
7272
RUN LD_LIBRARY_PATH= dnf install -y tcl
73-
ENV VERSION_SQLITE=3.50.4
73+
ENV VERSION_SQLITE=3.51.1
7474
ENV SQLITE_BUILD_DIR=${BUILD_DIR}/sqlite
7575
RUN set -xe; \
7676
mkdir -p ${SQLITE_BUILD_DIR}; \
@@ -179,7 +179,7 @@ RUN set -xe; \
179179
# Install extensions
180180
# We can install extensions manually or using `pecl`
181181
RUN pecl install APCu
182-
RUN pecl install redis-6.2.0
182+
RUN pecl install redis-6.3.0
183183

184184

185185
# ---------------------------------------------------------------
@@ -238,7 +238,7 @@ FROM build-environment as build_dev
238238
RUN mkdir -p /opt/bref/extensions
239239

240240
# Install xdebug
241-
RUN pecl install xdebug-3.4.2
241+
RUN pecl install xdebug-3.4.7
242242
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
243243

244244

php-84/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.4.13
7+
ARG VERSION_PHP=8.4.15
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -70,7 +70,7 @@ RUN mkdir -p ${BUILD_DIR} \
7070
# Needed by:
7171
# - php
7272
RUN LD_LIBRARY_PATH= dnf install -y tcl
73-
ENV VERSION_SQLITE=3.50.4
73+
ENV VERSION_SQLITE=3.51.1
7474
ENV SQLITE_BUILD_DIR=${BUILD_DIR}/sqlite
7575
RUN set -xe; \
7676
mkdir -p ${SQLITE_BUILD_DIR}; \
@@ -178,7 +178,7 @@ RUN set -xe; \
178178
# Install extensions
179179
# We can install extensions manually or using `pecl`
180180
RUN pecl install APCu
181-
RUN pecl install redis-6.2.0
181+
RUN pecl install redis-6.3.0
182182

183183

184184
# ---------------------------------------------------------------
@@ -237,7 +237,7 @@ FROM build-environment as build_dev
237237
RUN mkdir -p /opt/bref/extensions
238238

239239
# Install xdebug
240-
RUN pecl install xdebug-3.4.2
240+
RUN pecl install xdebug-3.4.7
241241
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
242242

243243

php-85/Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.5.0RC1
7+
ARG VERSION_PHP=8.5.0
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -70,7 +70,7 @@ RUN mkdir -p ${BUILD_DIR} \
7070
# Needed by:
7171
# - php
7272
RUN LD_LIBRARY_PATH= dnf install -y tcl
73-
ENV VERSION_SQLITE=3.50.4
73+
ENV VERSION_SQLITE=3.51.1
7474
ENV SQLITE_BUILD_DIR=${BUILD_DIR}/sqlite
7575
RUN set -xe; \
7676
mkdir -p ${SQLITE_BUILD_DIR}; \
@@ -113,7 +113,7 @@ WORKDIR ${PHP_BUILD_DIR}
113113
# --silent will hide the progress, but also the errors: we restore error messages with --show-error
114114
# --fail makes sure that curl returns an error instead of fetching the 404 page
115115
ARG VERSION_PHP
116-
RUN curl --location --silent --show-error --fail https://downloads.php.net/~daniels/php-${VERSION_PHP}.tar.gz \
116+
RUN curl --location --silent --show-error --fail https://www.php.net/get/php-${VERSION_PHP}.tar.gz/from/this/mirror \
117117
| tar xzC . --strip-components=1
118118

119119
# Configure the build
@@ -178,8 +178,7 @@ RUN set -xe; \
178178
# Install extensions
179179
# We can install extensions manually or using `pecl`
180180
RUN pecl install APCu
181-
# TODO not available for PHP 8.5 yet
182-
#RUN pecl install redis-6.2.0
181+
RUN pecl install redis-6.3.0
183182

184183

185184
# ---------------------------------------------------------------

0 commit comments

Comments
 (0)