Spaces:
Running
Running
File size: 367 Bytes
b18c318 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.10
WORKDIR /home/usr/
COPY ./requirements.txt /home/usr/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /home/usr/requirements.txt
RUN mkdir .files/
COPY . .
COPY .chainlit .chainlit
CMD ["chainlit", "run", "/home/usr/rag_app.py", "--host", "0.0.0.0", "--port", "7860"]
# CMD ["ls", "-a"]
# RUN chmod 755 /usr/local/lib/python3.10/ |