Files
vortex/bootstrap/Dockerfile
T
Prad NukalaandClaude Fable 5 d57086cd00 feat: unified messaging TUI MVP — Synapse + 7 mautrix bridges + Textual TUI + MCP draft staging
One-command local stack: cp .env.example .env && make up. Idempotent
bootstrap renders Synapse + bridge configs from pristine upstream examples,
provisions databases, registrations, double puppeting, and the admin user.
Textual TUI with bridge manager, in-terminal QR login, and drafts panel.
MCP server exposes read tools and a human-gated draft send workflow.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-08 12:13:13 -04:00

6 lines
193 B
Docker

FROM alpine:3.20
RUN apk add --no-cache bash curl openssl yq gettext postgresql16-client python3
COPY bootstrap.sh provision.sh /
RUN chmod +x /bootstrap.sh /provision.sh
CMD ["/bootstrap.sh"]