legacy-peer-deps

This commit is contained in:
Alexandros Mandilaras 2024-04-08 13:53:32 +03:00
parent fe6bbca30b
commit 7a168c2024
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ FROM node:20-alpine AS builder
COPY package.json ./
# Install the dependencies and make the folder
RUN npm install && mkdir /src && mv ./node_modules ./src
RUN npm install --legacy-peer-deps && mkdir /src && mv ./node_modules ./src
WORKDIR /src