switch npm ci to npm install for Docker compat

This commit is contained in:
Lizandro Guarnizo
2026-06-03 22:43:48 -05:00
parent 47ad790f79
commit 8fe15f0528
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
RUN npm run build