fix: corriger structure heredoc Dockerfile

- 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'
This commit is contained in:
syoul
2025-12-09 14:21:28 +01:00
parent aa04c62904
commit eec2e0c52f

View File

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