Commit f39c931c authored by tom goriunov's avatar tom goriunov Committed by GitHub

Merge pull request #2482 from blockscout/patch-yarn-timeout

Patch yarn timeout
parents 2dca1e17 ffeb07e9
......@@ -11,27 +11,27 @@ RUN ln -sf /usr/bin/python3 /usr/bin/python
WORKDIR /app
COPY package.json yarn.lock ./
RUN apk add git
RUN yarn --frozen-lockfile
RUN yarn --frozen-lockfile --network-timeout 100000
### FEATURE REPORTER
# Install dependencies
WORKDIR /feature-reporter
COPY ./deploy/tools/feature-reporter/package.json ./deploy/tools/feature-reporter/yarn.lock ./
RUN yarn --frozen-lockfile
RUN yarn --frozen-lockfile --network-timeout 100000
### ENV VARIABLES CHECKER
# Install dependencies
WORKDIR /envs-validator
COPY ./deploy/tools/envs-validator/package.json ./deploy/tools/envs-validator/yarn.lock ./
RUN yarn --frozen-lockfile
RUN yarn --frozen-lockfile --network-timeout 100000
### FAVICON GENERATOR
# Install dependencies
WORKDIR /favicon-generator
COPY ./deploy/tools/favicon-generator/package.json ./deploy/tools/favicon-generator/yarn.lock ./
RUN yarn --frozen-lockfile
RUN yarn --frozen-lockfile --network-timeout 100000
# *****************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment