- Move root-level docs into docs/ directory - Move config files into config/ directory - Move docker files into docker/ directory - Move test scripts into tests/ directory - Remove .env from tracking (use .env.example as template) - Remove .venv/ from tracking (use requirements.txt) - Add Vue3 frontend app (vue-app/) - Add new routes: upload, user_templates, meeting_minutes, etc. - Add database migrations for prompt_template additions - Fix load_dotenv() to use absolute path for Flask reloader compatibility Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
934 B
Docker
46 lines
934 B
Docker
# 使用Python 3.9官方镜像作为基础镜像
|
|
FROM python:3.9-slim
|
|
|
|
# 设置工作目录
|
|
WORKDIR /app
|
|
|
|
# 设置环境变量
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1 \
|
|
FLASK_ENV=production \
|
|
FLASK_APP=run_dev.py
|
|
|
|
# 安装系统依赖
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
g++ \
|
|
libpq-dev \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# 复制requirements文件
|
|
COPY requirements.txt .
|
|
|
|
# 安装Python依赖
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# 复制项目文件
|
|
COPY . .
|
|
|
|
# 创建必要的目录
|
|
RUN mkdir -p logs uploads
|
|
|
|
# 设置权限
|
|
RUN chmod +x start.sh stop.sh
|
|
|
|
# 暴露端口
|
|
EXPOSE 5000
|
|
|
|
# 健康检查
|
|
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:5000/health || exit 1
|
|
|
|
# 启动命令
|
|
CMD ["gunicorn", "--config", "gunicorn.conf.py", "run_dev:app"]
|