@@ -3,7 +3,7 @@ FROM node:22-alpine AS build
WORKDIR /app
COPY package*.json ./
-RUN npm ci
+RUN npm install
COPY . .
RUN npm run test:run && npm run build