From a2aa46183f238ed3e09f5663122020af0d796e18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20B=C3=BCchner?= Date: Fri, 29 Oct 2021 16:01:18 +0200 Subject: [PATCH] Moved back to PHP 7.4 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07946b89..499d42b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN { \ } >> /tmp/cdv/web/themes/custom/relaunch2018/templates/html.html.twig; \ rm -rf .git/; -FROM php:8.0-fpm-alpine +FROM php:7.4-fpm-alpine MAINTAINER Michael Büchner # Install packages @@ -96,8 +96,8 @@ COPY --chown=${RUN_USER}:${RUN_GROUP} --from=COMPOSER_CHAIN /tmp/cdv/ . ENV PATH=${PATH}:/var/www/html/vendor/bin RUN \ - # Create symlink for php8 - ln -s /usr/bin/php8 /usr/bin/php; \ + # Create symlink for php7.4 + ln -s /usr/bin/php7.4 /usr/bin/php; \ # Use the default PHP production configuration mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"; \ # Move entrypoint script in place