From ab50ae0bdfe3f85d76b399301a7dd14f54be2371 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Thu, 2 Apr 2026 03:06:22 -0700 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dda27db..87b43bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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