Skip to content

Commit

Permalink
maxsockets increase
Browse files Browse the repository at this point in the history
  • Loading branch information
schoren committed Oct 24, 2023
1 parent e2c57c3 commit 350b1e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /ui
ENV PATH /ui/node_modules/.bin:$PATH
COPY ./web/package*.json ./

RUN npm ci --maxsockets 1 --silent
RUN npm ci --maxsockets 10 --silent
COPY ./web ./

RUN npm run build
Expand All @@ -15,7 +15,7 @@ FROM node:alpine as build
WORKDIR /build
RUN npm i -g typescript
COPY ./api/package*.json ./
RUN npm ci --maxsockets 1 --silent
RUN npm ci --maxsockets 10 --silent

COPY ./api ./

Expand Down

0 comments on commit 350b1e2

Please sign in to comment.