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