diff --git a/Dockerfile b/Dockerfile index d3cd157..b47812e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/build # Install dependencies COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --network-timeout 100000 COPY . . RUN yarn compile