File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,12 @@ ENV MEMCACHE_VERSION 3.2.0
40
40
ENV PHPREDIS_VERSION 5.3.7
41
41
RUN export XDEBUG_DEPS="linux-headers" && \
42
42
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" && \
43
44
apk update && \
44
45
apk add ${PHP_EXTRA_DEPS} ${PHPIZE_DEPS} ${XDEBUG_DEPS} gettext && \
45
46
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-webp=/usr/include && \
46
47
docker-php-ext-configure ldap && \
47
- docker-php-ext-configure ftp --with-openssl-dir=/usr \
48
+ docker-php-ext-configure ftp --with-openssl-dir && \
48
49
docker-php-ext-install bcmath gd intl mbstring pcntl pdo pdo_mysql soap zip ldap ftp && \
49
50
pecl install xdebug-${XDEBUG_VERSION} && \
50
51
pecl install redis-${PHPREDIS_VERSION} && \
Original file line number Diff line number Diff line change @@ -158,6 +158,12 @@ build-8-3-2: build-template
158
158
build-8-3-2-rootless : PHPVER=8.3.2-fpm-alpine3.18
159
159
build-8-3-2-rootless : build-rootless-template
160
160
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
+
161
167
build-template : guessing-folder build-test-image
162
168
docker buildx build \
163
169
--load \
You can’t perform that action at this time.
0 commit comments