We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When i upgrade the version from 1.1.306to 1.2.0, docker container is not working as expected anymore.
1.1.306
1.2.0
To Reproduce
Example 1
FROM python:3.11.10-slim RUN pip install chainlit==1.1.306 WORKDIR /app COPY app.py . CMD ["chainlit", "run", "app.py"]
FROM python:3.12.6-slim RUN pip install chainlit==1.1.306 WORKDIR /app COPY app.py . CMD ["chainlit", "run", "app.py"]
FROM python:3.11.10-slim RUN pip install chainlit==1.2.0 WORKDIR /app COPY app.py . CMD ["chainlit", "run", "app.py"]
FROM python:3.12.6-slim RUN pip install chainlit==1.2.0 WORKDIR /app COPY app.py . CMD ["chainlit", "run", "app.py"]
Expected behavior When you upgrade the version of chainlit, i am expecting to see the (almost) same result on previous version.
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Hey @tugbayatilla Please try modifying your entrypoint as follows:
CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0"]
This was a breaking change done as part of #861 I believe listening at 0.0.0.0 should resolve your issue
Sorry, something went wrong.
Thanks @hadarsharon!
@tugbayatilla I recommend you check the changelog and/or release notes before upgrading!
Hey @tugbayatilla Please try modifying your entrypoint as follows: CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0"] This was a breaking change done as part of #861 I believe listening at 0.0.0.0 should resolve your issue
That solves the problem. Thanks.
No branches or pull requests
Describe the bug
When i upgrade the version from
1.1.306
to1.2.0
, docker container is not working as expected anymore.To Reproduce
Working examples
Example 1
Problematic Examples
Expected behavior
When you upgrade the version of chainlit, i am expecting to see the (almost) same result on previous version.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: