From de3412eefbdf2e143bf24dcb7af317c7a212950b Mon Sep 17 00:00:00 2001 From: Mariusz Date: Fri, 20 Feb 2026 14:07:57 +0000 Subject: [PATCH] Fix: npm install instead of npm ci --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 24a08cb..0d708e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS builder WORKDIR /app -COPY package*.json ./ -RUN npm ci +COPY package.json ./ +RUN npm install COPY . . RUN npm run build