Merge pull request #2099 from LaurentGoderre/docs-18-alpine3.20

This commit is contained in:
Peter Dave Hello 2024-06-05 10:34:33 +08:00 committed by GitHub
commit da735a9e6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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