diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 399e18c..6c2b37a 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -49,7 +49,12 @@ "Bash(chmod:*)", "Bash(git add:*)", "Bash(git commit:*)", - "Bash(git push:*)" + "Bash(git push:*)", + "Bash(docker compose:*)", + "mcp__context7__resolve-library-id", + "mcp__web-search-prime__webSearchPrime", + "mcp__context7__query-docs", + "Bash(docker logs:*)" ] } } diff --git a/keep-notes/Dockerfile b/keep-notes/Dockerfile index 16e6c1d..5a21971 100644 --- a/keep-notes/Dockerfile +++ b/keep-notes/Dockerfile @@ -48,8 +48,9 @@ RUN chown nextjs:nodejs .next COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static -# Copy Prisma schema and generated client +# Copy Prisma schema, generated client, and Query Engine binaries COPY --from=builder /app/prisma ./prisma +COPY --from=builder --chown=nextjs:nodejs /app/node_modules/.prisma ./node_modules/.prisma COPY --from=builder --chown=nextjs:nodejs /app/node_modules ./node_modules USER nextjs