Xavier Antonio Ochoa Chehab commited on
Commit
a7b1694
·
1 Parent(s): e2a2beb

New commit

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -15,4 +15,5 @@ RUN pip install uv
15
  RUN uv pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
  COPY --chown=user . /app
18
- CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
 
 
15
  RUN uv pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
  COPY --chown=user . /app
18
+ ENV PATH="/app/venv/bin:$PATH"
19
+ CMD ["python","-m","chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]