Update Dockerfile to fix uvicorn factory path

This commit is contained in:
Dave Morris 2023-08-07 08:21:57 -05:00 committed by GitHub
commit b54231e584
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,4 +11,5 @@ RUN rm *.whl
EXPOSE 80
CMD [ "uvicorn", "--host", "0.0.0.0", "--port", "80", "langflow.backend.app:app" ]
CMD [ "uvicorn", "--host", "0.0.0.0", "--port", "7860", "--factory", "langflow.main:create_app" ]