Spaces:
Runtime error
Runtime error
File size: 474 Bytes
e8136e1 fc203a3 e8136e1 fc203a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # 使用官方 Python 環境
FROM python:3.10
# 設定工作目錄
WORKDIR /code
# 複製並安裝套件
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# 複製其餘程式碼 (包含 main.py)
COPY . .
# ✨ 關鍵修正:將 "main.py" 改為 "main:app"
# "main" 代表檔案 main.py,"app" 代表您在程式裡寫的 app = FastAPI()
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |