From f5a50914c811f532fe09e7aa5df28a02eea44e08 Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Mon, 24 Jun 2024 00:10:30 +0500 Subject: [PATCH] build(dockerfile): add node-gyp back in --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d34df9d6..5b0c6819d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ RUN \ case "${TARGETPLATFORM}" in \ 'linux/arm64' | 'linux/arm/v7') \ apk update && \ - apk add --no-cache python3 make g++ gcc libc6-compat bash \ + apk add --no-cache python3 make g++ gcc libc6-compat bash && \ + pnpm add -g node-gyp \ ;; \ esac