aliss77777 commited on
Commit
bd73f20
1 Parent(s): dc15c4f

updating Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -15,11 +15,11 @@ WORKDIR $HOME
15
  # Copy the current directory contents into the container
16
  #COPY .
17
 
18
- # Install any needed packages specified in requirements.txt
19
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
20
-
21
  # Following instructions within HF docker file setup
22
  COPY . .
23
 
 
 
 
24
  # Run app.py when the container launches
25
  CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
 
15
  # Copy the current directory contents into the container
16
  #COPY .
17
 
 
 
 
18
  # Following instructions within HF docker file setup
19
  COPY . .
20
 
21
+ # Install any needed packages specified in requirements.txt
22
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
23
+
24
  # Run app.py when the container launches
25
  CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]