bug: yarn timeout for docker arm64 build

This commit is contained in:
Kieran 2023-02-10 15:18:32 +00:00
parent fd930abe90
commit d63699f14f
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM node:16 as build
WORKDIR /app
COPY package*.json yarn.lock .
RUN yarn install
RUN yarn install --network-timeout 1000000
COPY . .
RUN yarn build