diff --git a/Dockerfile.business b/Dockerfile.business index e6e7006..8b73c5a 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -69,7 +69,10 @@ RUN mkdir -p .techradar/data && \ cp about.md .techradar/data/about.md 2>/dev/null || echo "about.md not found, skipping" && \ cp custom.css .techradar/src/styles/custom.css 2>/dev/null || echo "custom.css not found, skipping" && \ echo "Fichiers public copiés" && \ - ls -la .techradar/public/ | grep -E "(team\.html|team-visualization)" || echo "Vérification fichiers team" + echo "📁 Vérification des fichiers team dans .techradar/public/:" && \ + ls -la .techradar/public/ | grep -E "(team\.html|team-visualization)" && echo "✅ Fichiers team trouvés" || (echo "⚠️ Fichiers team non trouvés dans .techradar/public/" && echo "📁 Contenu de public/ source:" && ls -la public/ | head -10) && \ + echo "📁 Vérification que team.html existe dans public/ source:" && \ + test -f public/team.html && echo "✅ public/team.html existe" || echo "❌ public/team.html n'existe pas" # Créer la page Next.js /team et modifier Navigation RUN chmod +x scripts/create-team-page.sh && \