Replace uvicorn with gunicorn + UvicornWorker in backend, runtime, and schedule Dockerfiles. New gunicorn.conf.py per service exposes bind/workers/timeout/graceful_timeout as GUNICORN_* env knobs. Notable details: - schedule: timeout=0 (disables gunicorn worker heartbeat) so long notebook execution isn't killed by gunicorn's silent-worker kill. - All three configs: drop dead threads=4 setting; UvicornWorker is async and ignores threads. - Pin gunicorn>=26.0.0 in each pyproject; uv.lock regenerated. - Drop stale 'COPY contracts ./contracts' from runtime and schedule Dockerfiles (contracts dir was deleted in an earlier refactor; builds would have failed). - backend Dockerfile: switch to uv sync layout matching runtime/ schedule; add build deps for native wheels. Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
1004 B
Docker
28 lines
1004 B
Docker
FROM python:3.12-slim-bookworm
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PYTHONPATH=/app
|
|
WORKDIR /app
|
|
# 从官方 Rclone 镜像直接复制 rclone 二进制文件(高效、稳定)
|
|
COPY --from=rclone/rclone:latest /usr/local/bin/rclone /usr/local/bin/rclone
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
|
|
|
|
# 安装系统依赖(fuse3 是 rclone mount 的核心底层依赖)
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
fuse3 \
|
|
ca-certificates \
|
|
curl \
|
|
procps \
|
|
build-essential \
|
|
python3-dev \
|
|
&& sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
COPY pyproject.toml uv.lock ./
|
|
COPY common ./common
|
|
COPY runtime ./runtime
|
|
RUN UV_DEFAULT_INDEX="https://pypi.tuna.tsinghua.edu.cn/simple/" uv sync --frozen --no-dev --no-editable --package runtime
|
|
|
|
EXPOSE 8000
|
|
CMD ["uv", "run", "--frozen", "--package", "runtime", "gunicorn", "--config", "runtime/gunicorn.conf.py", "runtime.main:app"]
|