docker 部署Python FastAPI项目
FROM python:3.12-slim WORKDIR /app # 安装依赖 COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # COPY app.py . # 暴露端口
84
0
0