fix: use npm install --legacy-peer-deps in Docker build

This commit is contained in:
Ashwin Kumar 2026-04-09 01:19:47 +02:00
parent 354f051ad1
commit 0abcc6e07c

View file

@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install --legacy-peer-deps
COPY . .
RUN npm run build