dockerfile 287 B

123456789101112131415
  1. FROM python:3.9
  2. WORKDIR /app
  3. COPY requirements.txt .
  4. RUN pip install --no-cache-dir -r requirements.txt
  5. # Copy application files
  6. COPY RAG_strategy.py .
  7. COPY RAG_app_copy.py .
  8. COPY add_vectordb.py .
  9. COPY Indexing_Split.py
  10. COPY Documents/ ./Documents/
  11. CMD ["python", "RAG_app_copy.py"]