添加docker构建配置

This commit is contained in:
2025-12-13 20:36:31 +08:00
parent 307573ba1b
commit b32e1d25d1
15 changed files with 995 additions and 842 deletions

View File

@@ -0,0 +1,24 @@
# 后端 Dockerfile
FROM python:3.11-slim
WORKDIR /app/backend
# 安装系统依赖
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# 复制依赖文件
COPY requirements.txt .
# 安装 Python 依赖
RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
# 复制后端代码
COPY . .
# 暴露端口
EXPOSE 5000
# 启动后端服务
CMD ["python", "app.py"]