evijit HF Staff commited on
Commit
238901a
·
1 Parent(s): ee44922

Fix Dockerfile to allow lockfile updates during build

Browse files

- Removed --frozen-lockfile flag to allow bun to update lockfile if needed
- This prevents build failures when lockfile has minor inconsistencies
- Maintains dependency integrity while allowing flexibility during deployment

Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -8,7 +8,7 @@ WORKDIR /app
8
 
9
  # Install dependencies based on the preferred package manager
10
  COPY --link package.json bun.lockb* ./
11
- RUN bun install --frozen-lockfile
12
 
13
  # Rebuild the source code only when needed
14
  FROM base AS builder
 
8
 
9
  # Install dependencies based on the preferred package manager
10
  COPY --link package.json bun.lockb* ./
11
+ RUN bun install
12
 
13
  # Rebuild the source code only when needed
14
  FROM base AS builder