rinogeek commited on
Commit
ac2a8d3
·
1 Parent(s): 538d81e

Fix: Remove bun.lockb from COPY (use optional lockfile)

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -7,10 +7,10 @@ WORKDIR /app
7
  RUN corepack enable && corepack prepare bun@latest --activate
8
 
9
  # Copy package files
10
- COPY package.json bun.lockb ./
11
 
12
- # Install dependencies
13
- RUN bun install --frozen-lockfile
14
 
15
  # Copy entire project
16
  COPY . .
 
7
  RUN corepack enable && corepack prepare bun@latest --activate
8
 
9
  # Copy package files
10
+ COPY package.json ./
11
 
12
+ # Install dependencies (lockfile optional)
13
+ RUN bun install
14
 
15
  # Copy entire project
16
  COPY . .