Spaces:
Sleeping
Sleeping
FROM python:3.11 | |
RUN pip install --no-cache-dir faiss-cpu langchain-community gradio sentence-transformers | |
COPY ./app.py /code/app.py | |
COPY ./vectorestore/ /code/vectorstore | |
RUN chmod -R 777 /code/ | |
WORKDIR /code/ | |
ENV GRADIO_SERVER_NAME="0.0.0.0" | |
EXPOSE 7860 | |
CMD [ "gradio", "app.py" ] |