# 使用官方的Python 3.9镜像作为基础镜像 FROM python:3.9 # 设置工作目录 WORKDIR /app # 将当前目录下的所有文件复制到工作目录中 COPY . . # 安装依赖 RUN pip install -r requirements.txt # 暴露端口 EXPOSE 8000 # 运行FastAPI应用 CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]