From 5f8878cffedebde3e7f4e58f8a014d9c2ac35744 Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 6 Mar 2026 18:39:24 +0000 Subject: [PATCH] fix: [30388f42] Connector Dockerfile - Explizite Datei-Kopien (Fix 'No such file') MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ersetzt durch explizite Befehle für alle notwendigen Python-Skripte. - Kopiert , , , , und direkt nach im Image. - Behebt den Fehler. --- connector-superoffice/Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/connector-superoffice/Dockerfile b/connector-superoffice/Dockerfile index bf427087..3301cb85 100644 --- a/connector-superoffice/Dockerfile +++ b/connector-superoffice/Dockerfile @@ -22,8 +22,13 @@ COPY --from=builder /root/.local /root/.local # Update PATH to include the user-installed packages ENV PATH=/root/.local/bin:$PATH -# Copy source code -COPY . . +# Copy source code (explicitly place needed files in /app root) +COPY worker.py . +COPY webhook_app.py . +COPY queue_manager.py . +COPY config.py . +COPY superoffice_client.py . +COPY start.sh . # Expose port for Webhook EXPOSE 8000 @@ -33,4 +38,3 @@ RUN chmod +x start.sh # Start both worker and webhook CMD ["./start.sh"] -