- 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`.
7 lines
133 B
Plaintext
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
|