From e7f611ee3a092ff969a1d0a53549b8ca4b75c5db Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sun, 22 Jun 2025 15:45:21 +0200 Subject: [PATCH] fix(docker): install node-gyp deps to fix arm64 build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec346634..b7a5f4e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:24-alpine3.21 -RUN apk add --no-cache bash jq +RUN apk add --no-cache bash jq python3 make gcc COPY . /app WORKDIR /app