Commit ffeb07e9 authored by aagaev's avatar aagaev

Add yarn network-timeout param

parent 0b4e3e37
...@@ -11,27 +11,27 @@ RUN ln -sf /usr/bin/python3 /usr/bin/python ...@@ -11,27 +11,27 @@ RUN ln -sf /usr/bin/python3 /usr/bin/python
WORKDIR /app WORKDIR /app
COPY package.json yarn.lock ./ COPY package.json yarn.lock ./
RUN apk add git RUN apk add git
RUN yarn --frozen-lockfile RUN yarn --frozen-lockfile --network-timeout 100000
### FEATURE REPORTER ### FEATURE REPORTER
# Install dependencies # Install dependencies
WORKDIR /feature-reporter WORKDIR /feature-reporter
COPY ./deploy/tools/feature-reporter/package.json ./deploy/tools/feature-reporter/yarn.lock ./ 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 ### ENV VARIABLES CHECKER
# Install dependencies # Install dependencies
WORKDIR /envs-validator WORKDIR /envs-validator
COPY ./deploy/tools/envs-validator/package.json ./deploy/tools/envs-validator/yarn.lock ./ 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 ### FAVICON GENERATOR
# Install dependencies # Install dependencies
WORKDIR /favicon-generator WORKDIR /favicon-generator
COPY ./deploy/tools/favicon-generator/package.json ./deploy/tools/favicon-generator/yarn.lock ./ 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