Spaces:
Sleeping
Sleeping
File size: 255 Bytes
b4e743e f6b91cc b4e743e 5b2ab6f b4e743e |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.11
RUN pip install --no-cache faiss-cpu langchain-community gradio sentence-transformers
COPY vectorstore/ /code/vectorstore/
COPY app.py /code/app.py
WORKDIR /code/
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
CMD [ "gradio", "app.py" ]
|