MikeCraBash commited on
Commit
65fd63c
·
1 Parent(s): 982a2f2

update Docker

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ ENV HOME=/home/user \
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
  COPY . .
11
  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 home/user/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  COPY . .
11
  CMD ["chainlit", "run", "app.py", "--port", "7860"]