恢复端口为16025

This commit is contained in:
2026-07-07 13:23:36 +08:00
parent ef4d26f11b
commit f7f14d7114
9 changed files with 26 additions and 26 deletions

View File

@@ -49,10 +49,10 @@ COPY . .
# 创建临时目录
RUN mkdir -p /tmp/web_captures
EXPOSE 16026
EXPOSE 16025
# 健康检查
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:16026/health || exit 1
CMD curl -f http://localhost:16025/health || exit 1
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:16026", "--timeout", "120", "app:app"]
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:16025", "--timeout", "120", "app:app"]