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 ```