prompt-security / Dockerfile
avilum's picture
Create Dockerfile
9773c6c verified
raw
history blame
233 Bytes
FROM python:3.11
RUN pip install --no-cache faiss-cpu langchain-community gradio sentence-transformers
COPY vectorstore/ /code/vectorstore/
WORKDIR /code/app
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
CMD [ "gradio", "app.py" ]