Xavier Antonio Ochoa Chehab commited on
Commit
2fe4ef6
·
1 Parent(s): 595da71

New commit

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -13,4 +13,4 @@ RUN python -m venv /app/venv
13
  RUN . /app/venv/bin/activate && pip install uv && uv pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
- CMD ["/app/venv/bin/python","-m","chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
 
13
  RUN . /app/venv/bin/activate && pip install uv && uv pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
+ CMD /app/venv/bin/activate && chainlit run app.py --host 0.0.0.0 --port 7860