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