From 478869a098ad6ffb2e6e3073f24d46843a5ad501 Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Mon, 16 Feb 2026 15:02:46 -0800 Subject: [PATCH] Use --legacy-peer-deps in Dockerfile for compatibility Co-authored-by: Cursor --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 769494e..15559d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ WORKDIR /app # Copy package files COPY package*.json ./ -# Install dependencies -RUN npm ci +# Install dependencies (with legacy peer deps for compatibility) +RUN npm ci --legacy-peer-deps # Rebuild the source code only when needed FROM base AS builder