From c008d38d109650f28f20e78233ba909e679ffb66 Mon Sep 17 00:00:00 2001 From: syoul Date: Tue, 9 Dec 2025 14:50:39 +0100 Subject: [PATCH] fix: ajouter config.default.json pour build techradar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Copie de config-business.json vers .techradar/data/config.default.json - Évite l'erreur MODULE_NOT_FOUND sur config.default.json pendant build:data --- Dockerfile.business | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.business b/Dockerfile.business index dccf9e3..976eea6 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -81,6 +81,7 @@ RUN rm -rf .techradar/data/radar && \ # Supprimer toute release de démo (2017-03-01, 2024-03-01, etc.) éventuellement recopiée depuis le package find .techradar/data/radar -mindepth 1 -maxdepth 1 ! -name '2025-01-15' -exec rm -rf {} + && \ cp radar-business/config-business.json .techradar/data/config.json && \ + cp radar-business/config-business.json .techradar/data/config.default.json && \ rm -rf .techradar/public && mkdir -p .techradar/public && \ cp -r public/* .techradar/public/ && \ cp public/team.html .techradar/public/team.html 2>/dev/null || true && \