From f71bb136fac4d07a589c930a9ee56cf7472861ca Mon Sep 17 00:00:00 2001 From: Superuser Date: Mon, 18 May 2026 20:47:13 +0800 Subject: [PATCH] fix: Dockerfile use npm install instead of npm ci --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1240227..8576459 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:24-alpine AS build WORKDIR /app -COPY package.json package-lock.json ./ -RUN npm ci +COPY package*.json ./ +RUN npm install COPY . . RUN npm run build