Files
chat/docker/Dockerfile.hanzo
T
Zach Kelling 3095f81028 feat: rebrand as Hanzo Chat with zen4 models and OIDC integration
- Replace all LibreChat/danny-avila image refs with hanzoai/chat
- Remove LibreChat branding from UI, emails, docs, and configs
- Configure zen4 model series as defaults via api.hanzo.ai
- Add Hanzo IAM OIDC authentication (hanzo.id)
- Update Docker publish workflow for GHCR + Docker Hub
- Add librechat.yaml with Hanzo Cloud endpoint config
2026-02-19 16:52:55 -08:00

14 lines
381 B
Docker

# Hanzo Chat with Demo User
FROM ghcr.io/hanzoai/chat:latest
# Copy demo user initialization script
COPY scripts/seed_demo_user.js /app/scripts/
COPY docker/entrypoint-with-demo.sh /app/
# Node.js should already be available in the base Hanzo Chat image
USER root
RUN chmod +x /app/entrypoint-with-demo.sh
# Use our custom entrypoint
ENTRYPOINT ["/app/entrypoint-with-demo.sh"]