From 8b23568c4bbb62461241ee7b63bc78081724f5e8 Mon Sep 17 00:00:00 2001 From: Colin Griffin Date: Tue, 26 Jul 2022 10:10:11 -0400 Subject: [PATCH] add yarn timeout config for arm64 emulator help --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 30a51ae..2ce8712 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,8 @@ COPY calcom/package.json calcom/yarn.lock calcom/turbo.json ./ COPY calcom/apps/web ./apps/web COPY calcom/packages ./packages -RUN yarn install --frozen-lockfile +RUN yarn config set network-timeout 1000000000 -g && \ + yarn install --frozen-lockfile RUN yarn build