anomaly-detection / Dockerfile
avilum's picture
Update Dockerfile
5b2ab6f verified
raw
history blame
255 Bytes
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" ]