- 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
14 lines
381 B
Docker
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"] |