bc44543
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 基礎映像:Python 3.9 FROM python:3.9-slim # 設定工作目錄 WORKDIR /app # 複製所需檔案 COPY requirements.txt . COPY app.py . # 安裝依賴 RUN pip install --no-cache-dir -r requirements.txt # 指定埠口 EXPOSE 5000 # 啟動應用 CMD ["python", "app.py"]