fix: use npm install in web Dockerfile to resolve esbuild platform deps

The package-lock.json was missing some esbuild optional dependencies
for other platforms. Using npm install instead of npm ci allows the
docker build to proceed without requiring all platform-specific packages
in the lock file.
This commit is contained in:
Fusion
2026-05-18 04:30:37 +02:00
parent 9b04760423
commit 236130b0a7
+1 -1
View File
@@ -7,7 +7,7 @@ WORKDIR /build
COPY package.json package-lock.json* ./
# Install dependencies
RUN npm ci
RUN npm install
# Copy source code
COPY . .