From 040bf21c4726cd221d5cb137811a566a2483c606 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Sun, 7 Apr 2024 18:30:29 +0200 Subject: [PATCH] docker: do not mention instance-config.php in leftypol dockerfile --- docker/php/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index e3bd206f..42f61541 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -82,9 +82,7 @@ COPY . /code # Make the instance configuration owned by www-data. # Make it writable by php. # Install the compose depedencies. -RUN chown www-data /code/inc/instance-config.php && chgrp www-data /code/inc/instance-config.php \ - && chmod 660 /code/inc/instance-config.php \ - && cd /code && composer install +RUN cd /code && composer install WORKDIR "/var/www" CMD [ "bootstrap.sh" ]