diff --git a/Dockerfile b/Dockerfile index a22bb760a2..48e50d3f30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM node:18-alpine ENV NODE_OPTIONS=--max-old-space-size=8192 # Install build dependancies. -RUN apk --no-cache add git python3 +RUN apk --no-cache --update add g++ make git python3 \ + && rm -rf /var/cache/apk/* RUN npm install -g npm@8.0.0