build: add global node-gyp for arm (#3676)

pull/3677/head
Ryan Cohen 6 months ago committed by GitHub
parent 89287af096
commit e297d25603
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,8 +8,9 @@ ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
RUN \ RUN \
case "${TARGETPLATFORM}" in \ case "${TARGETPLATFORM}" in \
'linux/arm64' | 'linux/arm/v7') \ 'linux/arm64' | 'linux/arm/v7') \
apk add --no-cache python3 make g++ && \ apk update && \
ln -s /usr/bin/python3 /usr/bin/python \ apk add --no-cache python3 make g++ gcc libc6-compat bash && \
yarn global add node-gyp \
;; \ ;; \
esac esac

Loading…
Cancel
Save