From d2f985af28c51b790c4e73ca7611c59d805e723f Mon Sep 17 00:00:00 2001 From: localadministrator Date: Thu, 14 May 2026 13:50:45 +0000 Subject: [PATCH] fix: use npm install instead of npm ci (no lockfile) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c91143..eaa184f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app ENV NODE_ENV=production ENV PORT=4028 COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . RUN npm run build EXPOSE 4028