fix: use npm install --legacy-peer-deps in Docker build
This commit is contained in:
parent
354f051ad1
commit
0abcc6e07c
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