diff --git a/Dockerfile.business b/Dockerfile.business index 9ee18e6..ede11cb 100644 --- a/Dockerfile.business +++ b/Dockerfile.business @@ -10,9 +10,15 @@ RUN apk add --no-cache git COPY package.json package-lock.json* ./ # Installation des dépendances Node -# Note : gray-matter et glob sont maintenant dans le package.json RUN npm ci --legacy-peer-deps || npm install --legacy-peer-deps +# --- FIX RADICAL --- +# Force l'installation de gray-matter et glob localement ET globalement +# pour s'assurer que tsx les trouve peu importe le contexte d'exécution +RUN npm install -g gray-matter glob +RUN npm install gray-matter glob +# ------------------- + # Copie du reste du projet COPY . .