From: Pablo Zmdl Date: Thu, 13 Feb 2025 09:22:05 +0000 (+0100) Subject: Remove installer.php if present X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ed6d58694993dbee6b2fa118fe5e4d1df8dc9b17;p=roundcube-roundcubemail-docker.git Remove installer.php if present This file is new since the move require the use of public_html --- diff --git a/nightly/Dockerfile b/nightly/Dockerfile index 4038c85..07a916d 100644 --- a/nightly/Dockerfile +++ b/nightly/Dockerfile @@ -13,6 +13,7 @@ RUN set -ex; \ mv /usr/src/roundcubemail-master /usr/src/roundcubemail; \ cd /usr/src/roundcubemail; \ rm -rf installer tests .ci .github .gitignore .editorconfig .tx .travis.yml; \ + [ -f public_html/installer.php ] && rm -f public_html/installer.php; \ make css-elastic; \ composer require kolab/net_ldap3 --no-install; \ composer require bjeavons/zxcvbn-php --no-install; \