We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d8706 commit d52e81bCopy full SHA for d52e81b
Dockerfile.multi
@@ -4,6 +4,10 @@
4
# Base for all builds
5
FROM node:20-alpine AS base
6
WORKDIR /app
7
+RUN apk --no-cache add curl
8
+RUN npm config set fetch-retry-maxtimeout 600000 && \
9
+ npm config set fetch-retries 5 && \
10
+ npm config set fetch-retry-mintimeout 15000
11
COPY package*.json ./
12
COPY packages/data-provider/package*.json ./packages/data-provider/
13
COPY client/package*.json ./client/
0 commit comments