Alpine 3.18 & PHP 8.2 (#1989)

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2023-05-31 15:17:36 +00:00 committed by GitHub
parent fb5866ada9
commit 22d28e45cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.1-apache-bullseye
FROM php:8.2-apache-bullseye
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \

View File

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.1-fpm-alpine3.17
FROM php:8.2-fpm-alpine3.18
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \

View File

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.1-fpm-bullseye
FROM php:8.2-fpm-bullseye
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \

View File

@ -2,8 +2,8 @@
set -eo pipefail
declare -A alpine_version=(
[default]='3.17'
[25]='3.16'
[default]='3.18'
)
declare -A debian_version=(
@ -11,7 +11,8 @@ declare -A debian_version=(
)
declare -A php_version=(
[default]='8.1'
[25]='8.1'
[default]='8.2'
)
declare -A cmd=(

View File

@ -9,19 +9,19 @@
"variant": "apache",
"base": "debian",
"baseVersion": "bullseye",
"phpVersion": "8.1"
"phpVersion": "8.2"
},
"fpm": {
"variant": "fpm",
"base": "debian",
"baseVersion": "bullseye",
"phpVersion": "8.1"
"phpVersion": "8.2"
},
"fpm-alpine": {
"variant": "fpm-alpine",
"base": "alpine",
"baseVersion": "3.17",
"phpVersion": "8.1"
"baseVersion": "3.18",
"phpVersion": "8.2"
}
}
},