# ---- Base Image ---- FROM python:3.10-slim # ---- System Dependencies ---- RUN apt-get update && apt-get install -y \ git \ wget \ build-essential \ libopenblas-dev \ && rm -rf /var/lib/apt/lists/* # ---- Workspace Setup ---- WORKDIR /app # ---- Copy Requirements ---- COPY requirements.txt . # ---- Install Python Dependencies ---- RUN pip install --no-cache-dir -r requirements.txt # ---- Copy Project Files ---- COPY . . # ---- Optional: Cache Sentence Transformer Model On Build ---- RUN python - <