diff --git a/Dockerfile b/Dockerfile index 21cbfe96..9d2bd6e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:slim as nbuild WORKDIR /app COPY ./frontend/package*.json ./ -RUN npm i +RUN npm ci --maxsockets 1 COPY ./frontend/ ./ RUN npm run build