File size: 615 Bytes
886c699
 
03b193d
886c699
03b193d
886c699
03b193d
 
886c699
03b193d
886c699
 
03b193d
 
886c699
03b193d
 
886c699
03b193d
886c699
 
03b193d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Sử dụng image Hugging Face có GPU, Python, Torch, Transformers sẵn
FROM huggingface/transformers-pytorch-gpu

# Cài các thư viện hệ thống cần thiết
RUN apt-get update && apt-get install -y \
    ffmpeg libsm6 libxext6 libgl1-mesa-glx git curl && \
    rm -rf /var/lib/apt/lists/*

# Copy file yêu cầu Python
COPY requirements.txt .

# Cài thư viện Python
RUN pip install --upgrade pip && pip install -r requirements.txt

# Copy code chính
COPY app.py .

# Mở cổng FastAPI
EXPOSE 7860

# Chạy ứng dụng FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]