Skip to content

Commit b61d797

Browse files
committed
PHP/8.4.13 - linux/arm64, linux/amd64
1 parent 59b1329 commit b61d797

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
124124

125125
# PHP 8.4 (for GPG KEY watch out "using key ... " notice in error message) / changes with minor versions
126126
ENV GPG_KEYS "AFD8691FDAEDF03BDF6E460563F15A9B715376CA 9D7F99A0CB8F05C8A6958D6256A97AF7600A39A6 0616E93D95AF471243E26761770426E17EBBB3DD"
127-
ENV PHP_VERSION 8.4.7
127+
ENV PHP_VERSION 8.4.13
128128
ENV PHP_URL="https://www.php.net/distributions/php-${PHP_VERSION}.tar.xz" PHP_ASC_URL="https://www.php.net/distributions/php-${PHP_VERSION}.tar.xz.asc"
129-
ENV PHP_SHA256="e29f4c23be2816ed005aa3f06bbb8eae0f22cc133863862e893515fc841e65e3" PHP_MD5=""
129+
ENV PHP_SHA256="b4f27adf30bcf262eacf93c78250dd811980f20f3b90d79a3dc11248681842df" PHP_MD5=""
130130

131131
RUN set -xe; \
132132
\
@@ -243,7 +243,7 @@ RUN pecl install xdebug
243243
# Install PHP composer
244244
RUN cd /usr/local/bin \
245245
&& php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
246-
&& php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \
246+
&& php -r "if (hash_file('sha384', 'composer-setup.php') === 'ed0feb545ba87161262f2d45a633e34f591ebb3381f2e0063c345ebea4d228dd0043083717770234ec00c5a9f9593792') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \
247247
&& php composer-setup.php \
248248
&& php -r "unlink('composer-setup.php');" \
249249
&& ln -s /usr/local/bin/composer.phar /usr/local/bin/composer

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ The libsodium extension is installed by default on PHP 7.2+
1010
The Dockerhub image name is `technicalguru/php`
1111

1212
# Current Releases / Tags
13-
* 8.4.7-apache-2.4.62.0
14-
* 8.3.21-apache-2.4.62.0
13+
* 8.4.13-apache-2.4.65.0
14+
* 8.3.26-apache-2.4.65.0
15+
16+
# Supported Platforms
17+
* linux/amd64
18+
* linux/arm64
1519

1620
# Unsupported PHP versions
1721
* 8.2.28-apache-2.4.62.0

build.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1-
docker build --progress=plain -t technicalguru/php:latest .
1+
docker buildx build \
2+
--progress=plain \
3+
-t technicalguru/php:latest \
4+
-t technicalguru/php:v8.4.13-apache-2.4.65.0 \
5+
-t technicalguru/php:v8.4-apache-2.4.65.0 \
6+
-t technicalguru/php:v8-apache-2.4.65.0 \
7+
--push \
8+
--platform linux/amd64,linux/arm64 \
9+
.
210
#docker build --progress=plain --no-cache -t technicalguru/php:latest .

0 commit comments

Comments
 (0)