my-kaiqiuwang/dockerfile
kyuuseiryuu 9499de0180 feat(likes): sync local favorites and add auto-login flow
- Add Prisma code generation in Dockerfile build step.
- Implement instant state updates for favoriting players via store hooks.
- Enhance 'FavPlayersPage' with:
  - New "Sync to cloud" and "Clear local favorites" actions.
  - Updated tabs showing counts for local vs. account favorites.
  - Auto-detection of view mode based on authentication status.
- Add auto-login support in 'UserCenter' triggered by query parameter `autoSignIn=true`.
2026-03-09 16:51:57 +09:00

7 lines
133 B
Plaintext

FROM oven/bun:latest
COPY . /app
WORKDIR /app
RUN bun install && bunx --bun prisma generate
ENTRYPOINT [ "bun", "start"]
EXPOSE 3000