Skip to content

Commit 161dcff

Browse files
committed
Remove --frozen-lockfile from bun install in Dockerfile
The --frozen-lockfile flag was removed from the bun install command to allow installation even if the lockfile is out of sync with package.json. This can help prevent build failures due to lockfile mismatches.
1 parent 9cb3497 commit 161dcff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN apt-get update -qq && \
1313

1414
# Install dependencies
1515
COPY bun.lock package.json ./
16-
RUN bun install --frozen-lockfile
16+
RUN bun install
1717

1818
# Copy and build
1919
COPY . .

0 commit comments

Comments
 (0)