fix: add --legacy-peer-deps flag to npm install in Dockerfile
The Docker build was failing with ERESOLVE unable to resolve dependency tree
error because @lobehub/[email protected] requires antd@^5.23.0 as a peer dependency,
but the project uses [email protected].
npm is stricter than bun about peer dependency conflicts. Adding
--legacy-peer-deps makes npm behave like bun and ignore peer dependency
conflicts, allowing the build to complete.
CI Run: https://github.com/ding113/claude-code-hub/actions/runs/20311163413
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <[email protected]>