From 24cced9dba0df7511998be054351d3945a07e99f Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Fri, 20 Oct 2023 23:58:38 -0400 Subject: [PATCH] increase timeout to pass github actions arm64 build --- Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 290cfb7..464960b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,13 +8,12 @@ WORKDIR /data COPY ./package.json ./yarn.lock ./playwright.config.ts ./ -RUN yarn +# Increase timeout to pass github actions arm64 build +RUN yarn install --network-timeout 10000000 -RUN npx playwright install-deps - -RUN apt-get clean - -RUN yarn cache clean +RUN npx playwright install-deps && \ + apt-get clean && \ + yarn cache clean COPY . .