diff --git a/Dockerfile b/Dockerfile index f513540..19ba886 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM node:14.20.1-alpine +FROM node:14.20.1-alpine3.15 WORKDIR /app COPY package*.json ./ +RUN apk add --no-cache git python2 make + RUN npm i -g npm@9.1.1 RUN npm install --legacy-peer-deps