File size: 650 Bytes
ec666c4 1380af5 ec666c4 1380af5 ec666c4 7dcd77a 1380af5 11c6c99 ec666c4 1380af5 ec666c4 1380af5 25d4844 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
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"]
|