Files
persistent-chat-plugin/deploy/docker/Dockerfile
卡若AI ba786b3700 feat: Persistent Chat v1.1 CO-Chat 整合上传 Gitea
同步 enhance/bridge/smoke/retire 模块、vendor 3.3.34、增强面板与 PRD 文档,
Hub 接入 hub-routes-prd,含安装/经验/模块说明与 co-integration 运维脚本。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 17:42:16 +08:00

16 lines
236 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY ./src/hub.js /app/hub.js
COPY ./web/panel.html /app/panel.html
ENV HOME=/data
ENV PCHAT_HTTP_PORT=13458
RUN mkdir -p /data/.persistent-chat-local/logs
EXPOSE 13458
CMD ["node", "/app/hub.js"]