multi_agent_rag / Dockerfile.dockerfile
shamik
fix: removing the duplicate copy command from dockerfile.
f6b97b7 unverified
raw
history blame
580 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 TRANSFORMERS_CACHE=/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
CMD ["python", "app.py"]