diff --git a/Dockerfile.business b/Dockerfile.business index e92ab18..b20515d 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -74,6 +74,10 @@ RUN mkdir -p .techradar/data && \ 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" +# Diagnostic : compter les fichiers markdown copiés dans .techradar/data/radar +RUN find .techradar/data/radar -name "*.md" | wc -l && \ + find .techradar/data/radar -name "*.md" | head -5 + # Créer la page Next.js /team RUN mkdir -p .techradar/src/pages && \ cat > .techradar/src/pages/team.tsx << 'EOF'