diff --git a/Dockerfile b/Dockerfile index c54015f..e15a211 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS builder WORKDIR /app COPY package.json package-lock.json ./ -RUN npm ci +RUN npm ci --legacy-peer-deps COPY . . RUN npm run build