Skip to content

Commit 7b66da4

Browse files
committed
PHP/8.3.26 - arm64 added
1 parent 2a08670 commit 7b66da4

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

Dockerfile

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

124124
# PHP 8.3 (for GPG KEY watch out "using key ... " notice in error message) / changes with minor versions
125125
ENV GPG_KEYS "1198C0117593497A5EC5C199286AF1F9897469DC AFD8691FDAEDF03BDF6E460563F15A9B715376CA C28D937575603EB4ABB725861C0779DC5C0A9DE4"
126-
ENV PHP_VERSION 8.3.21
126+
ENV PHP_VERSION 8.3.26
127127
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"
128-
ENV PHP_SHA256="4dfb329f209a552c3716394fc123bb62e80a468b55ce27fc8cb0fd5f30b9dcd6" PHP_MD5=""
128+
ENV PHP_SHA256="2f522eefa02c400c94610d07f25c4fd4c771f95e4a1f55102332ccb40663cbd2" PHP_MD5=""
129129

130130
RUN set -xe; \
131131
\
@@ -242,7 +242,7 @@ RUN pecl install xdebug
242242
# Install PHP composer
243243
RUN cd /usr/local/bin \
244244
&& php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
245-
&& php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \
245+
&& php -r "if (hash_file('sha384', 'composer-setup.php') === 'ed0feb545ba87161262f2d45a633e34f591ebb3381f2e0063c345ebea4d228dd0043083717770234ec00c5a9f9593792') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \
246246
&& php composer-setup.php \
247247
&& php -r "unlink('composer-setup.php');" \
248248
&& 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
@@ -6,8 +6,12 @@ by default so most PHP applications can run without much tweaks. Check the [Dock
66
The Dockerhub image name is `technicalguru/php`
77

88
# Current Releases / Tags
9-
* 8.4.7-apache-2.4.62.0
10-
* 8.3.21-apache-2.4.62.0
9+
* 8.4.13-apache-2.4.65.0
10+
* 8.3.26-apache-2.4.65.0
11+
12+
# Supported Platforms
13+
* linux/amd64
14+
* linux/arm64
1115

1216
# Unsupported PHP versions
1317
* 8.2.28-apache-2.4.62.0

build.sh

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

0 commit comments

Comments
 (0)