Nitish-py commited on
Commit
f61301c
·
1 Parent(s): 3befbcf

dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -1,3 +1,5 @@
1
  FROM python:3.11
 
 
2
  RUN pip install -r requirements.txt
3
  CMD ["chainlit", "run", "app.py", "--port", "7860"]
 
1
  FROM python:3.11
2
+ WORKDIR /app
3
+ COPY requirements.txt .
4
  RUN pip install -r requirements.txt
5
  CMD ["chainlit", "run", "app.py", "--port", "7860"]