-
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.
Add php83, drop php81 and update php82 (#2)
- Loading branch information
1 parent
b6d17f9
commit f4406b6
Showing
63 changed files
with
644 additions
and
445 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# PLEASE DO NOT EDIT IT DIRECTLY! | ||
# CHECK README FOR MORE INFO. | ||
# | ||
FROM php:8.2.11-cli | ||
FROM php:8.2.13-cli | ||
|
||
LABEL maintainer="Lubomir Stanko <[email protected]>" | ||
|
||
|
@@ -107,6 +107,7 @@ RUN apt-get update && \ | |
-o APT::AutoRemove::RecommendsImportant=false \ | ||
${BUILD_DEPS} \ | ||
${PECL_BUILD_DEPS} && \ | ||
# Cleanup | ||
apt-get clean && \ | ||
rm -r /var/lib/apt/lists/* && \ | ||
rm -f /usr/local/etc/php-fpm.d/docker.conf && \ | ||
|
@@ -118,11 +119,13 @@ RUN apt-get update && \ | |
RUN apt-get update && \ | ||
apt-get install -y \ | ||
${PECL_BUILD_DEPS} && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install mongodb-1.16.2 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install apcu-5.1.23 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install mongodb-1.17.1 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install pcov-1.0.11 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install redis-5.3.7 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install xdebug-3.2.2 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install redis-6.0.2 && \ | ||
yes '' | MAKEFLAGS="-j$(($(nproc)+2))" pecl install xdebug-3.3.1 && \ | ||
docker-php-ext-enable \ | ||
apcu \ | ||
mongodb \ | ||
pcov \ | ||
redis \ | ||
|
@@ -134,8 +137,10 @@ RUN apt-get update && \ | |
-y --auto-remove \ | ||
-o APT::AutoRemove::RecommendsImportant=false \ | ||
${PECL_BUILD_DEPS} && \ | ||
# Cleanup | ||
apt-get clean && \ | ||
rm -r /var/lib/apt/lists/* | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# PHP SECURITY CHECKER | ||
# ---------------------------------------------------------------------------------------------------------------------- | ||
|
@@ -152,21 +157,21 @@ RUN curl -sS https://getcomposer.org/installer | \ | |
php -- \ | ||
--install-dir=/usr/local/bin \ | ||
--filename=composer \ | ||
--version=2.6.4 | ||
--version=2.6.6 | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# REDIS-CLI | ||
# ---------------------------------------------------------------------------------------------------------------------- | ||
RUN wget https://download.redis.io/releases/redis-6.2.13.tar.gz && \ | ||
tar xvzf redis-6.2.13.tar.gz && \ | ||
rm -f redis-6.2.13.tar.gz && \ | ||
cd redis-6.2.13/deps && \ | ||
make && \ | ||
cd .. && \ | ||
make && \ | ||
cp src/redis-cli /usr/bin/ && \ | ||
cd .. && \ | ||
rm -rf redis-6.2.13 | ||
# REDIS-TOOLS | ||
# ---------------------------------------------------------------------------------------------------------------------- | ||
RUN DEBIAN_FRONTEND=noninteractive && \ | ||
REDIS_KEYRING=/usr/share/keyrings/redis-archive-keyring.gpg && \ | ||
REDIS_REPO="$(lsb_release -c -s)" && \ | ||
curl -fsSL https://packages.redis.io/gpg | gpg --dearmor -o ${REDIS_KEYRING} && \ | ||
echo "deb [signed-by=${REDIS_KEYRING}] https://packages.redis.io/deb ${REDIS_REPO} main" > /etc/apt/sources.list.d/redis.list && \ | ||
apt-get update && \ | ||
apt-get install -y redis-tools=6:6.2.13-1rl1~bookworm1 && \ | ||
# Cleanup | ||
apt-get clean && \ | ||
rm -r /var/lib/apt/lists/* | ||
|
||
##<autogenerated>## | ||
##</autogenerated>## | ||
|
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
2 changes: 1 addition & 1 deletion
2
build/php82/cli/base/usr/local/bin/generate-messenger-supervisor-conf
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
Oops, something went wrong.