CSAle commited on
Commit
bdf5829
·
1 Parent(s): 427b44f

Correct Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -1,7 +1,6 @@
1
  FROM 3.8.17-alpine3.18
2
- # copy the requirements.txt file first to avoid cache invalidations
3
- COPY requirements.txt /app/requirements.txt
4
  WORKDIR /app
 
5
  RUN pip install -r requirements.txt
6
- COPY . /app
7
  CMD ["chainlit", "app.py", "--port", "7860"]
 
1
  FROM 3.8.17-alpine3.18
 
 
2
  WORKDIR /app
3
+ COPY ./requirements.txt /app/requirements.txt
4
  RUN pip install -r requirements.txt
5
+ COPY . .
6
  CMD ["chainlit", "app.py", "--port", "7860"]