diff --git a/Dockerfile b/Dockerfile index c7cda8e..55a3fd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:22-alpine AS build WORKDIR /app COPY package.json . -RUN npm install +RUN npm install --legacy-peer-deps COPY . . RUN npm run build