Increase network timeout so that DockerHub builds won't fail

This commit is contained in:
Kristóf Tóth 2019-09-12 11:49:56 -04:00
parent cb626d1c49
commit bb5547402b
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg |\
WORKDIR /srv
COPY . /srv
RUN yarn install --frozen-lockfile && yarn build --no-progress
RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn build --no-progress
CMD yarn start