Leo commited on
Commit
193d62f
·
1 Parent(s): 5cee962

Force chainlit==2.3.0 in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -8,4 +8,6 @@ COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  COPY . .
 
 
11
  CMD ["chainlit", "run", "app.py", "--port", "7860"]
 
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  COPY . .
11
+ #Force install specific chainlit version
12
+ RUN pip install chainlit==2.3.0
13
  CMD ["chainlit", "run", "app.py", "--port", "7860"]