- FROM python:3.9
- WORKDIR /app
- COPY requirements.txt .
- RUN pip install --no-cache-dir -r requirements.txt
- # Copy application files
- COPY RAG_strategy.py .
- COPY RAG_app_copy.py .
- COPY add_vectordb.py .
- COPY Indexing_Split.py
- COPY Documents/ ./Documents/
- CMD ["python", "RAG_app_copy.py"]
|