Skip to content

Commit a7fa2de

Browse files
committed
fix: Remove static bun.lockb file from Dockerfile
1 parent 6cf54d9 commit a7fa2de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ RUN apk --no-cache add openssh g++ make python3 git
66

77
FROM base AS install
88
RUN mkdir -p /temp
9-
COPY package.json bun.lockb /temp/
10-
RUN cd /temp && bun install --frozen-lockfile
9+
COPY package.json /temp/
10+
RUN cd /temp && bun i
1111

1212
FROM install AS prerelease
1313
COPY --from=install /temp/node_modules node_modules

0 commit comments

Comments
 (0)