diff --git a/Dockerfile b/Dockerfile index a23f3e9..27b9476 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:18-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