tdeshane commited on
Commit
d7ec507
1 Parent(s): 37fc8fb

Update Dockerfile

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