Skip to content

Commit fff142f

Browse files
author
claudfuen
committed
fix: use npm install instead of npm ci for migration container
- npm ci requires package-lock.json which doesn't exist (project uses bun.lock) - npm install works without lockfile and will install dependencies correctly - Fixes migration container build failure
1 parent c91caa5 commit fff142f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/Dockerfile.migration

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ WORKDIR /app
66
# Copy package files first for better caching
77
COPY package.json ./
88

9-
# Install dependencies using npm (reliable and available everywhere)
10-
RUN npm ci --production=false
9+
# Install dependencies using npm install (no package-lock.json available)
10+
RUN npm install --production=false
1111

1212
# Copy the entire src directory to avoid import path issues
1313
COPY src/ ./src/

0 commit comments

Comments
 (0)