From eec2e0c52f1cb33e8d24499167784e37d43e59b3 Mon Sep 17 00:00:00 2001 From: syoul Date: Tue, 9 Dec 2025 14:21:28 +0100 Subject: [PATCH] fix: corriger structure heredoc Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajouter commande RUN manquante pour script Python - Fermer proprement heredoc team.tsx avec EOF - Ouvrir heredoc Python avec PYEOF - Structure Dockerfile maintenant cohérente Corrige erreur 'unknown instruction: import' --- Dockerfile.business | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile.business b/Dockerfile.business index 583ba8b..27df62c 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -573,6 +573,12 @@ export default function TeamPage() { ); } EOF + +# Script Python pour ajouter le lien Équipe dans Navigation.tsx (supprime TOUS les doublons) +RUN cat > /tmp/add_team_link.py << 'PYEOF' +#!/usr/bin/env python3 +import sys +import re import os f = ".techradar/src/components/Navigation/Navigation.tsx"