diff --git a/Dockerfile b/Dockerfile index a3c4f46..ea42bc0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ WORKDIR /app COPY . /app # Install app dependencies and build the application -RUN cd core && rm -f ./src/output/wallets.json && yarn install && yarn script.createWallets && yarn build && cd .. -RUN cd cli && yarn install && yarn build && cd .. +RUN cd core && rm -f ./src/output/wallets.json && yarn install --network-timeout 1000000 && yarn script.createWallets && yarn build && cd .. +RUN cd cli && yarn install --network-timeout 1000000 && yarn build && cd .. # Use an official Node runtime as a parent image for the runtime stage FROM node:16 as runtime