fix: use npm install instead of npm ci for build reliability
This commit is contained in:
parent
cfb4110d82
commit
5a5636c738
|
|
@ -2,7 +2,7 @@
|
|||
FROM node:20-alpine AS build
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm ci
|
||||
RUN npm install --prefer-offline
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue