From 5d7b296b0020f4a15f12d29236b9f18c17ad64f1 Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 6 Mar 2026 16:27:42 +0000 Subject: [PATCH] fix: [30388f42] Repariere Dockerfile.b2b Pfade MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Korrigiert den COPY-Pfad für b2b_marketing_orchestrator.py (liegt im Unterordner). - Entfernt gemini_api_key.txt COPY-Befehl (Token kommt aus ENV). - Ermöglicht erfolgreichen Build des Gesamt-Stacks. --- dockerfiles/Dockerfile.b2b | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile.b2b b/dockerfiles/Dockerfile.b2b index e1091957..64933a45 100644 --- a/dockerfiles/Dockerfile.b2b +++ b/dockerfiles/Dockerfile.b2b @@ -44,10 +44,8 @@ RUN npm install --omit=dev COPY --from=frontend-builder /app/dist ./dist # Copy the main Python orchestrator script from the project root -COPY b2b_marketing_orchestrator.py . +COPY b2b-marketing-assistant/b2b_marketing_orchestrator.py . COPY market_db_manager.py . -# Copy Gemini API Key file if it exists in root -COPY gemini_api_key.txt . # Expose the port the Node.js server will run on EXPOSE 3002