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:
parent
9e52b3bec6
commit
8443ceb21d
@ -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
|
||||
|
@ -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/
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user