fix: [30388f42] Repariere Dockerfile.b2b Pfade

- 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.
This commit is contained in:
2026-03-06 16:27:42 +00:00
parent ce2a9e90e0
commit 5d7b296b00

View File

@@ -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