Make 2022.10 using php7.4, just in case ...

This commit is contained in:
Philipp Holzer 2022-12-04 12:44:48 +01:00
parent 10d5fff6b4
commit f2fc626f3e
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
4 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.0-apache-bullseye
FROM php:7.4-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.0-fpm-alpine
FROM php:7.4-fpm-alpine
# 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.0-fpm-bullseye
FROM php:7.4-fpm-bullseye
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \

View File

@ -2,6 +2,7 @@
set -eo pipefail
declare -A php_version=(
[2022.10]='7.4'
[default]='8.0'
)