docker: do not mention instance-config.php in leftypol dockerfile

This commit is contained in:
Zankaria 2024-04-07 18:30:29 +02:00
parent 651cc9edb4
commit 040bf21c47

View file

@ -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" ]