Fix Dockerfile: use bun.lock instead of bun.lockb
Some checks failed
Build and Push Frontend / build (push) Failing after 11s

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

View File

@@ -3,7 +3,7 @@ FROM oven/bun:1.3.6-alpine
WORKDIR /app WORKDIR /app
# Copy package files # Copy package files
COPY package.json bun.lockb ./ COPY package.json bun.lock ./
# Install dependencies # Install dependencies
RUN bun install --frozen-lockfile --production RUN bun install --frozen-lockfile --production