From ba3e7d048fe8ea0b4edfa633ff097de4fb2126ab Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Tue, 6 Dec 2022 10:19:27 -0800 Subject: [PATCH] build: increase network timeout for yarn for frontend build for arm64 build (#401) - build: increase network timeout for frontend build for arm64 build (see nodejs/docker-node#1335) - also bump microk8s action version to fix warning --- .github/workflows/microk8s-ci.yaml | 2 +- frontend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/microk8s-ci.yaml b/.github/workflows/microk8s-ci.yaml index d1aa7dc1..ac0dbabc 100644 --- a/.github/workflows/microk8s-ci.yaml +++ b/.github/workflows/microk8s-ci.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: balchua/microk8s-actions@v0.3.0 + uses: balchua/microk8s-actions@v0.3.1 with: channel: '1.25/stable' addons: '["dns", "helm3", "hostpath-storage", "registry", "metrics-server"]' diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 4b1588a5..e9b85ca3 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -14,7 +14,7 @@ ENV GIT_COMMIT_HASH=${GIT_COMMIT_HASH} \ WORKDIR /app COPY yarn.lock package.json ./ -RUN yarn --frozen-lockfile +RUN yarn --frozen-lockfile --network-timeout 1000000 COPY lit-localize.json \ postcss.config.js \