anomaly-detection / Dockerfile
avilum's picture
Update Dockerfile
f6b91cc verified
raw
history blame
258 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/app
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
CMD [ "gradio", "app.py" ]