diff --git a/Dockerfile b/Dockerfile index 001e008..c564fef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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