Skip to content

Commit 3f54407

Browse files
committed
Add php 8.3.15.
1 parent d55f09b commit 3f54407

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

8.3/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ ENV MEMCACHE_VERSION 3.2.0
4040
ENV PHPREDIS_VERSION 5.3.7
4141
RUN export XDEBUG_DEPS="linux-headers" && \
4242
export PHP_EXTRA_DEPS="libxml2-dev icu-dev libmemcached-dev cyrus-sasl-dev libpng libjpeg-turbo freetype-dev libpng-dev libjpeg-turbo-dev libzip-dev oniguruma-dev libwebp-dev ldb-dev libldap openldap-dev" && \
43+
export OPENSSL_LIBS="-L/usr -lssl -lcrypto -lz" && export OPENSSL_CFLAGS="-I/usr/include" && \
4344
apk update && \
4445
apk add ${PHP_EXTRA_DEPS} ${PHPIZE_DEPS} ${XDEBUG_DEPS} gettext && \
4546
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-webp=/usr/include && \
4647
docker-php-ext-configure ldap && \
47-
docker-php-ext-configure ftp --with-openssl-dir=/usr \
48+
docker-php-ext-configure ftp --with-openssl-dir && \
4849
docker-php-ext-install bcmath gd intl mbstring pcntl pdo pdo_mysql soap zip ldap ftp && \
4950
pecl install xdebug-${XDEBUG_VERSION} && \
5051
pecl install redis-${PHPREDIS_VERSION} && \

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,12 @@ build-8-3-2: build-template
158158
build-8-3-2-rootless: PHPVER=8.3.2-fpm-alpine3.18
159159
build-8-3-2-rootless: build-rootless-template
160160

161+
build-8-3-15: PHPVER=8.3.15-fpm-alpine3.21
162+
build-8-3-15: build-template
163+
164+
build-8-3-15-rootless: PHPVER=8.3.15-fpm-alpine3.21
165+
build-8-3-15-rootless: build-rootless-template
166+
161167
build-template: guessing-folder build-test-image
162168
docker buildx build \
163169
--load \

0 commit comments

Comments
 (0)