From 13a8730692f481669ed5b9dd07521c1ca7b58e04 Mon Sep 17 00:00:00 2001 From: syoul Date: Tue, 9 Dec 2025 12:41:49 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20ajout=20v=C3=A9rifications=20build=20pou?= =?UTF-8?q?r=20diagnostiquer=20les=20changements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Vérification contenu team.tsx dans logs build - Vérification protection script JS dans logs build - Diagnostic pour s'assurer que les changements sont appliqués Cela aidera à déboguer pourquoi Portainer ne prend pas les changements --- Dockerfile.business | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile.business b/Dockerfile.business index b6ebf07..e922614 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -108,7 +108,9 @@ export default function TeamPage() { return null; // Ne rien rendre côté serveur } EOF -RUN echo "✅ Page team.tsx créée (redirige vers /team.html)" +RUN echo "✅ Page team.tsx créée (version ultra-simplifiée)" && \ + echo "🔍 VÉRIFICATION: Contenu de team.tsx créé:" && \ + cat .techradar/src/pages/team.tsx # Créer aussi un fichier HTML statique /team/index.html pour garantir l'accès RUN mkdir -p .techradar/public/team && \ @@ -444,7 +446,9 @@ else exit 1 fi SHEOF -RUN chmod +x /tmp/add_team_link.sh +RUN chmod +x /tmp/add_team_link.sh && \ + echo "🔍 VÉRIFICATION: Script JavaScript modifié:" && \ + grep -A 3 -B 1 "PROTECTION ABSOLUE" public/strategie-script.js || echo "❌ Protection non trouvée" # Exécuter le script RUN /tmp/add_team_link.sh