From f149571673950ace0e77f8c357ebe152b5677faa Mon Sep 17 00:00:00 2001 From: syoul Date: Tue, 9 Dec 2025 15:12:46 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20ne=20pas=20=C3=A9craser=20config.default?= =?UTF-8?q?.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Garder le config.default.json original du package - Ne copier que vers config.json (pas config.default.json) - Évite erreur TypeScript 'Property icon does not exist on type never' Le type de social est inféré depuis config.default.json --- Dockerfile.business | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile.business b/Dockerfile.business index 976eea6..dccf9e3 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -81,7 +81,6 @@ 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 && \