From 2a50a5e1d4f9ce161d596e355e8a3f4f390c9072 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Thu, 12 Mar 2026 16:09:23 -0500 Subject: [PATCH] fix: crear .installation_completed (con punto) en Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit isInstallationCompleted() en config.php busca '.installation_completed' (con punto) pero el Dockerfile solo creaba 'installation_completed' (sin punto). Ahora se crean ambas variantes para cubrir todos los checks del código. --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6934cb8..4be2063 100644 --- a/Dockerfile +++ b/Dockerfile @@ -129,7 +129,9 @@ RUN chmod -R 755 /var/www/html/logs \ && chmod -R 755 /var/www/html/uploads \ && chmod +x /var/www/html/worker.php \ # Marcar instalación completa → activa modo producción en config.php - && touch /var/www/html/installation_completed + # Crear ambas variantes: con y sin punto (distintas partes del código usan cada una) + && touch /var/www/html/installation_completed \ + && touch /var/www/html/.installation_completed # Health check HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \