multi_agent_rag / Dockerfile
Shamik's picture
fix: removing the nvidia libaries from requirements.txt.
aa3bf9e verified
raw
history blame
630 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY --link --chown=1000 . .
RUN mkdir -p /tmp/cache/
RUN chmod a+rwx -R /tmp/cache/
RUN apt-get update && apt-get install -y poppler-utils ca-certificates curl gnupg build-essential \
gcc \
g++ \
make \
libffi-dev \
libssl-dev \
&& rm -rf /var/lib/apt/lists/*
ENV PYTHONPATH=/app
ENV HF_HOME=/tmp/cache/
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 GRADIO_ALLOW_FLAGGING=never GRADIO_NUM_PORTS=1 GRADIO_SERVER_NAME=0.0.0.0 GRADIO_SERVER_PORT=7860 SYSTEM=spaces
RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true
CMD ["python", "app.py"]