feat: add schedule package

This commit is contained in:
tao.chen
2026-07-29 13:35:32 +08:00
parent 128aa7563f
commit 233dc90efe
10 changed files with 1038 additions and 830 deletions
+12
View File
@@ -3,6 +3,18 @@ FROM python:3.12-slim
WORKDIR /app
# 安装系统依赖(fuse3 是 rclone mount 的核心底层依赖)
RUN apt-get update && apt-get install -y --no-install-recommends \
fuse3 \
ca-certificates \
curl \
procps \
&& sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf \
&& rm -rf /var/lib/apt/lists/*
# 从官方 Rclone 镜像直接复制 rclone 二进制文件(高效、稳定)
COPY --from=rclone/rclone:latest /usr/local/bin/rclone /usr/local/bin/rclone
# 安装 uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv