File size: 395 Bytes
657bed4
 
 
 
 
 
 
 
cc7c145
657bed4
 
cc7c145
 
657bed4
cc7c145
657bed4
 
cc7c145
226aa86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.10-slim

# 設置工作目錄
WORKDIR /app

# 複製依賴文件
COPY requirements.txt .

# 安裝依賴
RUN pip install --no-cache-dir -r requirements.txt

# 複製整個專案
COPY . .

# 暴露端口(Hugging Face 會自動注入 $PORT)
EXPOSE 7860

# 使用 Hugging Face 的 $PORT 變數啟動 Uvicorn
CMD ["uvicorn", "api_server:app", "--host", "0.0.0.0", "--port", "7860"]