From 408c36a221b8f68ac1a3f0e475d233ad152a5e4a Mon Sep 17 00:00:00 2001 From: Colin Griffin Date: Sun, 11 Jun 2023 12:14:05 -0400 Subject: [PATCH] try tmpfs --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c5f026..e9d530c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,8 @@ COPY calcom/.yarn ./.yarn COPY calcom/apps/web ./apps/web COPY calcom/packages ./packages -RUN yarn config set httpTimeout 1200000 && \ +RUN --mount=type=tmpfs,target/calcom,size=2G \ + yarn config set httpTimeout 1200000 && \ npx turbo prune --scope=@calcom/web --docker && \ yarn install && \ yarn db-deploy && \