From d5e37e4f3f58b659a55c29164576df3d579afdff Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Mon, 24 Jun 2024 00:14:21 +0500 Subject: [PATCH] build(dockerfile): install node-gyp through npm --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b0c6819..0940538a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN \ 'linux/arm64' | 'linux/arm/v7') \ apk update && \ apk add --no-cache python3 make g++ gcc libc6-compat bash && \ - pnpm add -g node-gyp \ + npm install --global node-gyp \ ;; \ esac