forked from TrafeX/docker-php-nginx
-
Notifications
You must be signed in to change notification settings - Fork 26
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 #19 from erseco/php83
Upgrade PHP Version to 8.3
- Loading branch information
Showing
7 changed files
with
39 additions
and
39 deletions.
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 |
---|---|---|
|
@@ -6,35 +6,35 @@ LABEL Maintainer="Ernesto Serrano <[email protected]>" \ | |
|
||
# Install packages | ||
RUN apk --no-cache add \ | ||
php82 \ | ||
php82-ctype \ | ||
php82-curl \ | ||
php82-dom \ | ||
php82-exif \ | ||
php82-fileinfo \ | ||
php82-fpm \ | ||
php82-gd \ | ||
php82-iconv \ | ||
php82-intl \ | ||
php82-json \ | ||
php82-mbstring \ | ||
php82-mysqli \ | ||
php82-opcache \ | ||
php82-openssl \ | ||
php82-pecl-apcu \ | ||
php82-pdo \ | ||
php82-pdo_mysql \ | ||
php82-pgsql \ | ||
php82-phar \ | ||
php82-session \ | ||
php82-simplexml \ | ||
php82-soap \ | ||
php82-sodium \ | ||
php82-tokenizer \ | ||
php82-xml \ | ||
php82-xmlreader \ | ||
php82-zip \ | ||
php82-zlib \ | ||
php83 \ | ||
php83-ctype \ | ||
php83-curl \ | ||
php83-dom \ | ||
php83-exif \ | ||
php83-fileinfo \ | ||
php83-fpm \ | ||
php83-gd \ | ||
php83-iconv \ | ||
php83-intl \ | ||
php83-json \ | ||
php83-mbstring \ | ||
php83-mysqli \ | ||
php83-opcache \ | ||
php83-openssl \ | ||
php83-pecl-apcu \ | ||
php83-pdo \ | ||
php83-pdo_mysql \ | ||
php83-pgsql \ | ||
php83-phar \ | ||
php83-session \ | ||
php83-simplexml \ | ||
php83-soap \ | ||
php83-sodium \ | ||
php83-tokenizer \ | ||
php83-xml \ | ||
php83-xmlreader \ | ||
php83-zip \ | ||
php83-zlib \ | ||
nginx \ | ||
runit \ | ||
curl \ | ||
|
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
# pipe stderr to stdout and run php-fpm | ||
exec 2>&1 | ||
exec php-fpm82 -F | ||
exec php-fpm83 -F |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env sh | ||
apk --no-cache add curl | ||
curl --silent --fail http://app:8080 | grep 'PHP 8.2' | ||
curl --silent --fail http://app:8080 | grep 'PHP 8.3' |