Esrath commited on
Commit
72c5b75
1 Parent(s): 43c95be

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,8 +5,8 @@ ENV HOME=/home/user \
5
  PATH=/home/user/.local/bin:$PATH
6
  WORKDIR $HOME/app
7
  COPY --chown=user . $HOME/app
8
- COPY ./LangChain/requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
 
11
- COPY ./LangChain/app .
12
  CMD ["chainlit", "run", "app.py", "--port", "7860"]
 
5
  PATH=/home/user/.local/bin:$PATH
6
  WORKDIR $HOME/app
7
  COPY --chown=user . $HOME/app
8
+ COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
 
11
+ COPY . .
12
  CMD ["chainlit", "run", "app.py", "--port", "7860"]