—— 阿尔伯特·爱因斯坦

程序员の奇妙冒险

当前标签:FastAPI(2 篇文章)

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 . # 暴露端口

2800