- 修复Redis认证 (配置密码) - 启动Python管理后台 (端口9531, 15个功能开关) - 统一版本号 0.2.7 - 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
19 lines
318 B
Docker
19 lines
318 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENV PORT=9528
|
|
ENV TRANSFER_CONFIG_PATH=/data/transfer_config.json
|
|
|
|
EXPOSE 9528
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
|
|
CMD ["python", "server.py"]
|
|
|
|
CMD ["python", "server.py"]
|