Update to PHP 8.4; update dependencies

This commit is contained in:
Lexi / Zoe 2026-07-30 19:40:05 +02:00
parent b2c7df32eb
commit 7d78df604d
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
9 changed files with 634 additions and 855 deletions

View file

@ -1,4 +1,4 @@
FROM php:7.4-apache AS base
FROM php:8.4-apache AS base
WORKDIR /var/www
@ -11,7 +11,7 @@ RUN apt-get update && \
RUN a2enmod rewrite && \
sed -ri -e 's!/var/www/html!/var/www/public!g' /etc/apache2/sites-available/*.conf
COPY --from=composer /usr/bin/composer /usr/bin/composer
COPY --from=composer:2.10 /usr/bin/composer /usr/bin/composer
FROM base AS development