Skip to content

Commit 128978a

Browse files
fix(docker): use npm install instead of npm ci
npm ci strictly requires package-lock.json to match package.json, and the committed lockfile is missing the @sentry/webpack-plugin webpack subtree, so the build failed on Linux. npm install installs the packages and reconciles the lock on the fly, unblocking the build. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 3adf4e6 commit 128978a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
99
&& rm -rf /var/lib/apt/lists/*
1010
WORKDIR /app
1111
COPY package.json package-lock.json ./
12-
RUN npm ci
12+
RUN npm install
1313

1414
# Build
1515
FROM base AS builder

0 commit comments

Comments
 (0)