fix Dockerfiles: update npm to latest before ci

This commit is contained in:
Lizandro Guarnizo
2026-06-03 22:40:10 -05:00
parent afc096d552
commit ae6bd1f53a
2 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
FROM node:22-alpine AS builder
RUN npm install -g npm@latest
WORKDIR /app
COPY package*.json ./
RUN npm ci --ignore-scripts
RUN npm ci --ignore-scripts --no-audit --no-fund
COPY . .
RUN npm run build