Aigenthix/Graph_RAG
0
1FROM python:3.11-slim2 3WORKDIR /app4 5# Install system dependencies6RUN apt-get update && apt-get install -y \7 gcc \8 g++ \9 && rm -rf /var/lib/apt/lists/*10 11# Copy requirements12COPY requirements.txt .13 14# Install Python dependencies15RUN pip install --no-cache-dir -r requirements.txt16 17# Copy application18COPY app/ app/19 20# Create necessary directories21RUN mkdir -p data/uploads data/chroma_data logs22 23# Expose port24EXPOSE 800025 26# Run application27CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]28 