File size: 240 Bytes
f25b2b3
 
 
 
 
 
427b44f
1
2
3
4
5
6
7
FROM 3.8.17-alpine3.18
# copy the requirements.txt file first to avoid cache invalidations
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["chainlit", "app.py", "--port", "7860"]