fix: use npm install --legacy-peer-deps in Docker build
This commit is contained in:
parent
c3a03b7829
commit
36d26b5439
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue