From d4de221f576d3c1b80e44dff0c9b9408b8ccea82 Mon Sep 17 00:00:00 2001 From: sct Date: Sat, 14 Feb 2026 17:47:05 -0700 Subject: [PATCH] fix(docker): add py3-setuptools for arm builds on node 20 Amp-Thread-ID: https://ampcode.com/threads/T-019c4f56-720a-73f9-a47f-2074c121bfd1 Co-authored-by: Amp --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 06df785add..8d04d263bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ 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 py3-setuptools make g++ gcc libc6-compat bash && \ yarn global add node-gyp \ ;; \ esac