From 8443ceb21d134bfd34d5003d638ff62956481278 Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Fri, 8 Nov 2024 10:30:50 +0100 Subject: [PATCH] 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. --- Dockerfile | 2 +- Dockerfile.daemon | 2 +- Dockerfile.webui | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index aae2ff6..47438a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Dockerfile.daemon b/Dockerfile.daemon index 11a7a87..a7d7ab4 100644 --- a/Dockerfile.daemon +++ b/Dockerfile.daemon @@ -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/ diff --git a/Dockerfile.webui b/Dockerfile.webui index f69f246..db2bc63 100644 --- a/Dockerfile.webui +++ b/Dockerfile.webui @@ -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