Enterprise-RAG-System / Dockerfile
yuvrajsingh6
deploy: v2 production baked index (zero latency)
9c4c212
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Download index during build (Bake into image)
RUN python tools/download_index.py
# Set Python path
ENV PYTHONPATH=/app
# Expose Streamlit port
EXPOSE 8501
# Run Streamlit
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]