Downgrade PHP version in Dockerfiles

The PHP version used in the Dockerfiles has been downgraded from 8.3 to 8.2. This change affects the base Dockerfile, as well as the daemon and webui variants. The downgrade is expected to resolve compatibility issues with some dependencies.
This commit is contained in:
Jeroen De Meerleer 2024-11-08 10:30:50 +01:00
parent 9e52b3bec6
commit 8443ceb21d
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ RUN npm install
RUN npm run build
RUN rm -rf node_modules
FROM php:8.3-apache
FROM php:8.2-apache
ENV APACHE_DOCUMENT_ROOT=/var/www/webcron/public/
ENV WEBCRON_ROOT=/var/www/webcron/
ENV TZ=Europe/Brussels

View File

@ -1,4 +1,4 @@
FROM php:8.3
FROM php:8.2
RUN apt-get update -y && apt-get install -y git
ENV APACHE_DOCUMENT_ROOT=/var/www/webcron/public/
ENV WEBCRON_ROOT=/var/www/webcron/

View File

@ -8,7 +8,7 @@ RUN npm install
RUN npm run build
RUN rm -rf node_modules
FROM php:8.3-apache
FROM php:8.2-apache
ENV APACHE_DOCUMENT_ROOT=/var/www/webcron/public/
ENV WEBCRON_ROOT=/var/www/webcron/
ENV TZ=Europe/Brussels