Update Docker and workflow configurations for bun.lock handling

This commit is contained in:
Arunavo Ray
2025-05-20 16:03:40 +05:30
parent 4a01a351f0
commit cad72da016
4 changed files with 16 additions and 8 deletions

View File

@@ -6,7 +6,8 @@ RUN apk add --no-cache libc6-compat python3 make g++ gcc wget sqlite
# ----------------------------
FROM base AS deps
COPY package.json bun.lock ./
COPY package.json ./
COPY bun.lock* ./
RUN bun install --frozen-lockfile
# ----------------------------