fix: Add uv command with chainlit
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -62,4 +62,4 @@ EXPOSE 7860
|
|
62 |
# Define the command to run the Chainlit application
|
63 |
# Listen on all interfaces (0.0.0.0) on the designated port
|
64 |
# Do NOT use the --watch (-w) flag in production
|
65 |
-
CMD ["chainlit", "run", "chainlit_ui.py", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
62 |
# Define the command to run the Chainlit application
|
63 |
# Listen on all interfaces (0.0.0.0) on the designated port
|
64 |
# Do NOT use the --watch (-w) flag in production
|
65 |
+
CMD ["uv","run", "chainlit", "run", "chainlit_ui.py", "--host", "0.0.0.0", "--port", "7860"]
|