From a81238313e081c14f91147c8714fcb090c380548 Mon Sep 17 00:00:00 2001 From: Superuser Date: Mon, 18 May 2026 20:47:09 +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 969bb1d..ffa4be0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:24-alpine WORKDIR /app -COPY package.json package-lock.json ./ -RUN npm ci --omit=dev +COPY package*.json ./ +RUN npm install COPY . . RUN npm run build EXPOSE 3000