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:
+1
-1
@@ -7,7 +7,7 @@ WORKDIR /build
|
||||
COPY package.json package-lock.json* ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm ci
|
||||
RUN npm install
|
||||
|
||||
# Copy source code
|
||||
COPY . .
|
||||
|
||||
Reference in New Issue
Block a user