This commit is contained in:
@ -6,8 +6,10 @@ WORKDIR /app
|
|||||||
# Copy package files
|
# Copy package files
|
||||||
COPY package.json yarn.lock ./
|
COPY package.json yarn.lock ./
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies with increased timeout and retry settings
|
||||||
RUN yarn install --frozen-lockfile
|
RUN yarn config set network-timeout 300000 && \
|
||||||
|
yarn config set network-concurrency 1 && \
|
||||||
|
yarn install --frozen-lockfile --network-timeout 300000
|
||||||
|
|
||||||
# Copy source code
|
# Copy source code
|
||||||
COPY . .
|
COPY . .
|
||||||
|
Reference in New Issue
Block a user