-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from LynxSolutions/php-8.4
PHP 8.4 Support
- Loading branch information
Showing
14 changed files
with
262 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
|
||
FROM php:8.4.1-cli-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps \ | ||
$PHPIZE_DEPS \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
&& apk add --no-cache --virtual .runtime-deps \ | ||
freetype-dev \ | ||
libjpeg-turbo-dev \ | ||
libpng-dev \ | ||
libzip-dev \ | ||
icu-dev \ | ||
&& pecl install \ | ||
redis \ | ||
pcov \ | ||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-configure intl \ | ||
&& docker-php-ext-install \ | ||
--jobs 4 \ | ||
bcmath \ | ||
gd \ | ||
opcache \ | ||
pdo_mysql \ | ||
sockets \ | ||
zip \ | ||
intl \ | ||
&& docker-php-ext-enable \ | ||
redis \ | ||
pcov \ | ||
&& apk del .build-deps \ | ||
&& docker-php-source delete \ | ||
&& pecl clear-cache | ||
|
||
COPY conf.d/php.overrides.ini $PHP_INI_DIR/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[PHP] | ||
expose_php = Off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
|
||
FROM php:8.4.1-cli-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps \ | ||
$PHPIZE_DEPS \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
&& apk add --no-cache --virtual .runtime-deps \ | ||
freetype-dev \ | ||
libjpeg-turbo-dev \ | ||
libpng-dev \ | ||
libzip-dev \ | ||
icu-dev \ | ||
&& pecl install \ | ||
redis \ | ||
xdebug \ | ||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-configure intl \ | ||
&& docker-php-ext-install \ | ||
--jobs 4 \ | ||
bcmath \ | ||
gd \ | ||
opcache \ | ||
pdo_mysql \ | ||
sockets \ | ||
zip \ | ||
intl \ | ||
&& docker-php-ext-enable \ | ||
redis \ | ||
xdebug \ | ||
&& apk del .build-deps \ | ||
&& docker-php-source delete \ | ||
&& pecl clear-cache | ||
|
||
COPY conf.d/php.overrides.ini $PHP_INI_DIR/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[PHP] | ||
expose_php = Off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
|
||
FROM php:8.4.1-cli-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps \ | ||
$PHPIZE_DEPS \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
&& apk add --no-cache --virtual .runtime-deps \ | ||
freetype-dev \ | ||
libjpeg-turbo-dev \ | ||
libpng-dev \ | ||
libzip-dev \ | ||
icu-dev \ | ||
&& pecl install \ | ||
redis \ | ||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-configure intl \ | ||
&& docker-php-ext-install \ | ||
--jobs 4 \ | ||
bcmath \ | ||
gd \ | ||
opcache \ | ||
pdo_mysql \ | ||
sockets \ | ||
zip \ | ||
intl \ | ||
&& docker-php-ext-enable \ | ||
redis \ | ||
&& apk del .build-deps \ | ||
&& docker-php-source delete \ | ||
&& pecl clear-cache | ||
|
||
COPY conf.d/php.overrides.ini $PHP_INI_DIR/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[PHP] | ||
expose_php = Off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
|
||
FROM php:8.4.1-fpm-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps \ | ||
$PHPIZE_DEPS \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
&& apk add --no-cache --virtual .runtime-deps \ | ||
freetype-dev \ | ||
libjpeg-turbo-dev \ | ||
libpng-dev \ | ||
libzip-dev \ | ||
icu-dev \ | ||
&& pecl install \ | ||
redis \ | ||
pcov \ | ||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-configure intl \ | ||
&& docker-php-ext-install \ | ||
--jobs 4 \ | ||
bcmath \ | ||
gd \ | ||
opcache \ | ||
pdo_mysql \ | ||
sockets \ | ||
zip \ | ||
intl \ | ||
&& docker-php-ext-enable \ | ||
redis \ | ||
pcov \ | ||
&& apk del .build-deps \ | ||
&& docker-php-source delete \ | ||
&& pecl clear-cache | ||
|
||
COPY conf.d/php.overrides.ini $PHP_INI_DIR/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[PHP] | ||
expose_php = Off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
|
||
FROM php:8.4.1-fpm-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps \ | ||
$PHPIZE_DEPS \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
&& apk add --no-cache --virtual .runtime-deps \ | ||
freetype-dev \ | ||
libjpeg-turbo-dev \ | ||
libpng-dev \ | ||
libzip-dev \ | ||
icu-dev \ | ||
&& pecl install \ | ||
redis \ | ||
xdebug \ | ||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-configure intl \ | ||
&& docker-php-ext-install \ | ||
--jobs 4 \ | ||
bcmath \ | ||
gd \ | ||
opcache \ | ||
pdo_mysql \ | ||
sockets \ | ||
zip \ | ||
intl \ | ||
&& docker-php-ext-enable \ | ||
redis \ | ||
xdebug \ | ||
&& apk del .build-deps \ | ||
&& docker-php-source delete \ | ||
&& pecl clear-cache | ||
|
||
COPY conf.d/php.overrides.ini $PHP_INI_DIR/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[PHP] | ||
expose_php = Off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
|
||
FROM php:8.4.1-fpm-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps \ | ||
$PHPIZE_DEPS \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
&& apk add --no-cache --virtual .runtime-deps \ | ||
freetype-dev \ | ||
libjpeg-turbo-dev \ | ||
libpng-dev \ | ||
libzip-dev \ | ||
icu-dev \ | ||
&& pecl install \ | ||
redis \ | ||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
&& docker-php-ext-configure intl \ | ||
&& docker-php-ext-install \ | ||
--jobs 4 \ | ||
bcmath \ | ||
gd \ | ||
opcache \ | ||
pdo_mysql \ | ||
sockets \ | ||
zip \ | ||
intl \ | ||
&& docker-php-ext-enable \ | ||
redis \ | ||
&& apk del .build-deps \ | ||
&& docker-php-source delete \ | ||
&& pecl clear-cache | ||
|
||
COPY conf.d/php.overrides.ini $PHP_INI_DIR/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[PHP] | ||
expose_php = Off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters