From 8db5955e24a250b42ed11c56a46bfd12eefddd17 Mon Sep 17 00:00:00 2001 From: Laurent Goderre Date: Tue, 4 Jun 2024 15:13:57 -0400 Subject: [PATCH] Update the node-gyp alpine docs section to account for Node 18 in Alpine 3.20 python issue --- docs/BestPractices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/BestPractices.md b/docs/BestPractices.md index 6141a9a1d..2f1a41685 100644 --- a/docs/BestPractices.md +++ b/docs/BestPractices.md @@ -187,7 +187,7 @@ Here is an example of how you would install dependencies for packages that requi ```Dockerfile FROM node:alpine -RUN apk add --no-cache --virtual .gyp python3 make g++ \ +RUN apk add --no-cache --virtual .gyp python3 py-setuptools make g++ \ && npm install [ your npm dependencies here ] \ && apk del .gyp ```