From ed7d7c2fda6603d9ad59e2c5e9af2c0f5d5afe28 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Thu, 29 Feb 2024 09:46:33 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore(Dockerfile):=20replace=20`?= =?UTF-8?q?npm=20ci`=20with=20`npm=20install`=20for=20OS=20specific=20buil?= =?UTF-8?q?ds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 70b124b207..786ac12c3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ WORKDIR /app # Allow mounting of these files, which have no default # values. RUN touch .env -RUN npm ci +RUN apk --no-cache add curl && \ + npm install # React client build ENV NODE_OPTIONS="--max-old-space-size=2048"