FROM python:3.9-slim WORKDIR /app # 安装依赖 RUN pip install --no-cache-dir telethon requests aiohttp # 复制脚本 COPY forwarder.py /app/forwarder.py # 暴露健康检查端口 EXPOSE 7860 # 同时运行转发器和 HTTP 服务器 CMD python -u forwarder.py 2>&1 & python -m http.server 7860