From 1caa31b035f6296085bd38c85f9d0e6c4a125149 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Thu, 29 Feb 2024 10:04:36 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3chore(Dockerfile):=20add=20addition?= =?UTF-8?q?al=20steps=20to=20prevent=20arm64=20build=20failure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 786ac12c3a..81766fdeb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ WORKDIR /app # Allow mounting of these files, which have no default # values. RUN touch .env +RUN npm config set fetch-retry-maxtimeout 300000 +RUN apk add --no-cache g++ make python3 py3-pip +RUN npm install -g node-gyp RUN apk --no-cache add curl && \ npm install