Fix Dockerfile: use bun.lock instead of bun.lockb
All checks were successful
Build and Push Backend / build (push) Successful in 41s

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hector Ros
2026-01-20 00:16:32 +01:00
parent d4c667e806
commit ebf5d74933

View File

@@ -5,7 +5,7 @@ WORKDIR /app
# Install dependencies
FROM base AS install
RUN mkdir -p /temp/prod
COPY package.json bun.lockb /temp/prod/
COPY package.json bun.lock /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile --production
# Copy source