From 11470fea6ddf550034df761710a7ef75e7a6eb14 Mon Sep 17 00:00:00 2001 From: goenning Date: Sat, 4 May 2024 08:11:17 +0100 Subject: [PATCH] npm ci --maxsockets 1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5babf0ebb..cc823a2ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ FROM --platform=${TARGETPLATFORM:-linux/amd64} node:18-bullseye AS ui-builder WORKDIR /ui COPY package.json package-lock.json ./ -RUN npm ci +RUN npm ci --maxsockets 1 COPY . . RUN make build-ssr