From 15abfedc9322a091f0726dc305b2f2f7dbb2ca4a Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Sat, 17 Jan 2026 15:27:25 +0000 Subject: [PATCH] Generated by Spark: Upgrade npm in the builder image, then re-run npm ci --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ee2b539..5afbf86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM node:20-slim AS builder WORKDIR /app +# Upgrade npm to the latest version +RUN npm install -g npm@latest + # Copy workspace configuration and all package files COPY package*.json ./