Upgraded to Symfony 6.3 and PHP 8.2.

This commit is contained in:
Klaus Silveira
2023-11-16 22:20:26 -05:00
parent dd98962de9
commit ea0d763394
18 changed files with 1167 additions and 1198 deletions

View File

@@ -1,4 +1,4 @@
FROM php:8.1-fpm-alpine
FROM php:8.2-fpm-alpine
ENV PHP_EXT_DEPS \
gettext=gettext-dev \
@@ -11,6 +11,7 @@ ENV PHP_EXT_DEPS \
RUN set -x; \
apk add --no-cache --virtual .php-extensions-build-dependencies \
$PHPIZE_DEPS \
linux-headers \
$(echo ${PHP_EXT_DEPS} | tr ' ' '\n' | cut -d = -f 2) \
&& apk add --no-cache \
$(echo ${PHP_EXT_DEPS} | tr ' ' '\n' | cut -d = -f 1) \