From d2fad433d718ed22424a59d53ad6761adb81edeb Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Mon, 16 Oct 2023 16:00:35 -0700 Subject: [PATCH] Dockerfile: add missing node-gyp build dep to node:18 image (#403) Signed-off-by: James Hillyerd --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6a2219b..a243b9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ ### Build frontend # Due to no official elm compiler for arm; build frontend with amd64. FROM --platform=linux/amd64 node:18 as frontend +RUN npm install -g node-gyp WORKDIR /build COPY . . WORKDIR /build/ui