diff --git a/Dockerfile b/Dockerfile index 953e28d606..d878f22a71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # phase-build FROM node:12-alpine as builder +RUN apk --no-cache add g++ gcc libgcc libstdc++ linux-headers make python + WORKDIR /usr/src/app/ USER root