fix: [30388f42] Repariere COPY Pfade in GTM Architect Dockerfile

- Korrigiert die Pfade für gtm_architect_orchestrator.py und gtm_db_manager.py.
- Diese Dateien liegen im Unterordner gtm-architect/ und nicht im Root.
- Ermöglicht erfolgreichen Build der GTM App.
This commit is contained in:
2026-03-06 16:46:15 +00:00
parent b310105eb7
commit 5b9f08c4f3

View File

@@ -31,12 +31,12 @@ COPY --from=builder /app/dist ./dist
# Copy backend files and application code (paths relative to project root)
COPY gtm-architect/server.cjs .
COPY gtm-architect/package.json .
COPY gtm_architect_orchestrator.py .
COPY gtm-architect/gtm_architect_orchestrator.py .
COPY helpers.py .
COPY config.py .
# Use the specific requirements file for this app
COPY gtm-architect/requirements.txt .
COPY gtm_db_manager.py .
COPY gtm-architect/gtm_db_manager.py .
# Install Python and Node.js dependencies
RUN pip install --no-cache-dir -r requirements.txt