-
Notifications
You must be signed in to change notification settings - Fork 705
New issue
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
Creating a custom dockerfile #365
Comments
We don't support execution inside a 'remote' container now. |
Hi, I am basically trying to deploy a custom UI page for taskWeaver. I changed the app.py file and chainlit.md file. But the UI still did not change. Then, I want to deploy it using docker. So I was trying to build the dockerfile inside the all_in_one_container. Please help me out with the same. Thank you! |
Have you re-build the docker image after making those changes? The script is here. You may want to change the name of the image in the script, by changing
Once the script is ready, just run it to build the new image. |
Thanks. I have another question. I want to add my custom logo instead of the TaskWeaver logo. I cannot find the place where the logo's image is being used in the chainlit frontend. Can you help out with the same, Thank you! |
I guess you can find it under |
I am facing the same issue. With chainlit.md updated, the changes are not reflected in the front end. I am using my own docker file. I rebuilt the image after the changes. And where does app.py import chainlit.md file for the welcome messages? Is there a way to overwrite them/disable. my docker file
|
The problem is that you run chainlit in a directory other than the |
I cloned the repo: made this change: then went to scripts/build_all_in_one.sh and update this line to version="0.2" to version="latest" then I do docker run -it --net=host -e LLM_API_BASE=base_url when I went to http://localhost:8000/ I didn't see the markdown and when I ask a prompt, I get this in the log and markdown isn't loaded properly
|
Hi,
I created custom plugins and I now want to build the dockerfile and run the same using chainlit how do i do so. I am trying to deploy the same using docker on a remote server.
Thanks
The text was updated successfully, but these errors were encountered: