| FROM python:3.10-slim | |
| # Tạo thư mục làm việc | |
| WORKDIR /app | |
| # Sao chép toàn bộ nội dung project | |
| COPY . . | |
| # Cài đặt g++ để build FAISS | |
| RUN apt-get update && apt-get install -y \ | |
| build-essential \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # ✅ Tạo thư mục FAISS index và gán quyền đầy đủ | |
| RUN mkdir -p faiss_index && chmod -R 777 faiss_index | |
| # Cài đặt dependencies | |
| RUN pip install --upgrade pip | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Mở port cho FastAPI & Gradio | |
| EXPOSE 7860 | |
| # Command khởi chạy FastAPI + Gradio tích hợp | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |