From 045ac9469b1fb208a97093f72b60650cbe5107bc Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 13 Apr 2024 11:52:49 +0200 Subject: [PATCH] disable config cache on composer install --- Containerfile | 2 +- Containerfile.fpm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index afa52e4..c3541eb 100644 --- a/Containerfile +++ b/Containerfile @@ -34,7 +34,7 @@ RUN set -xe;\ git apply /patches/0003-point-to-modified-sourcecode.patch &&\ git apply /patches/0004-disable-beagle-service.patch &&\ git apply /patches/0005-allow-30-char-usernames.patch &&\ - composer install --prefer-dist --no-interaction --no-ansi --no-dev --optimize-autoloader &&\ + ENABLE_CONFIG_CACHE=false composer install --prefer-dist --no-interaction --no-ansi --no-dev --optimize-autoloader &&\ ln -s public html &&\ chown -R www-data:www-data /var/www &&\ cp -r storage storage.skel &&\ diff --git a/Containerfile.fpm b/Containerfile.fpm index 5ecee84..a9a22e0 100644 --- a/Containerfile.fpm +++ b/Containerfile.fpm @@ -33,7 +33,7 @@ RUN set -xe;\ git apply /patches/0003-point-to-modified-sourcecode.patch &&\ git apply /patches/0004-disable-beagle-service.patch &&\ git apply /patches/0005-allow-30-char-usernames.patch &&\ - composer install --prefer-dist --no-interaction --no-ansi --no-dev --optimize-autoloader &&\ + ENABLE_CONFIG_CACHE=false composer install --prefer-dist --no-interaction --no-ansi --no-dev --optimize-autoloader &&\ chown -R www-data:www-data /var/www &&\ cp -r storage storage.skel &&\ cp -r public public.skel &&\