fix: use bun.lock instead of bun.lockb in Dockerfile

Bun v1.2+ switched from binary lockfile (bun.lockb) to text-based
bun.lock format. Update the Dockerfile COPY to match.
This commit is contained in:
2026-04-02 03:06:22 -07:00
parent 90fb0f223e
commit ab50ae0bdf
+1 -1
View File
@@ -64,7 +64,7 @@ WORKDIR /app
COPY --from=builder --chown=euchre:euchre /app/.next ./.next
COPY --from=builder --chown=euchre:euchre /app/public ./public
COPY --from=builder --chown=euchre:euchre /app/package.json ./package.json
COPY --from=builder --chown=euchre:euchre /app/bun.lockb ./bun.lockb
COPY --from=builder --chown=euchre:euchre /app/bun.lock ./bun.lock
COPY --from=builder --chown=euchre:euchre /app/prisma ./prisma
# Install only production dependencies