diff --git a/Dockerfile b/Dockerfile index 798e427..de07968 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,13 @@ RUN apk update && apk upgrade && \ apk add --update git && \ apk add --update openssh && \ apk add --update bash && \ - apk add --update wget + apk add --update wget && \ + apk add --update g++ make python3 WORKDIR /usr/src/app COPY package*.json ./ -RUN HUSKY_SKIP_INSTALL=1 npm install +RUN HUSKY_SKIP_INSTALL=1 npm install --build-from-source --python=/usr/bin/python3 RUN wget https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -O /wait-for-it.sh RUN chmod +x /wait-for-it.sh