From 0c1c035bbc0b0eff41a0896206161ccfaf741bbc Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 6 Mar 2026 19:04:11 +0000 Subject: [PATCH] fix: [30388f42] Entferne Referenz aus Connector Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Löscht den Befehl. - Behebt den Build-Fehler , da das Skript nicht mehr existiert. - Ermöglicht einen erfolgreichen Build des Connectors. --- connector-superoffice/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/connector-superoffice/Dockerfile b/connector-superoffice/Dockerfile index 9097eff2..34fd3df6 100644 --- a/connector-superoffice/Dockerfile +++ b/connector-superoffice/Dockerfile @@ -28,13 +28,9 @@ COPY connector-superoffice/webhook_app.py . COPY connector-superoffice/queue_manager.py . COPY connector-superoffice/config.py . COPY connector-superoffice/superoffice_client.py . -COPY connector-superoffice/start.sh . # Expose port for Webhook EXPOSE 8000 -# Make sure scripts are executable -RUN chmod +x start.sh - # Start both worker and webhook directly within the CMD CMD ["/bin/bash", "-c", "python3 worker.py & uvicorn webhook_app:app --host 0.0.0.0 --port 8000"]