koffiwind commited on
Commit
31ff5b4
·
1 Parent(s): 8c4ac75

add rust to dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -34,5 +34,7 @@ RUN uv sync
34
  # Expose the port
35
  EXPOSE 7860
36
 
 
 
37
  # Run the app
38
  CMD ["uv", "run", "chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
 
34
  # Expose the port
35
  EXPOSE 7860
36
 
37
+ # Move to the .venv directory (if it exists)
38
+ WORKDIR $HOME/app/.venv
39
  # Run the app
40
  CMD ["uv", "run", "chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]