prompt-security / Dockerfile
avilum's picture
Update Dockerfile
7e14ebc verified
raw
history blame
222 Bytes
FROM python:3.11
RUN pip install --no-cache-dir faiss-cpu langchain-community gradio sentence-transformers
COPY --chown=user . /code
WORKDIR /code/
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
CMD [ "gradio", "app.py" ]