fix: use npm install instead of npm ci for cross-platofmr compatibility

This commit is contained in:
Dan
2026-06-22 00:04:05 -06:00
parent 2f51bc08f7
commit eae178cc8e
+1 -1
View File
@@ -2,7 +2,7 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
RUN npm run build