fix: [30388f42] Entferne Referenz aus Connector Dockerfile

- Löscht den  Befehl.
- Behebt den Build-Fehler , da das Skript nicht mehr existiert.
- Ermöglicht einen erfolgreichen Build des Connectors.
This commit is contained in:
2026-03-06 19:04:11 +00:00
parent 8e20adae93
commit 0c1c035bbc

View File

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