Build this docker file and try and use Bcrypt to complete a hash and it will segfault, and I can't figure out why for the life of me.
FROM mhart/alpine-node:9.1.0
MAINTAINER James Claridge <james@claridgeand.co>
RUN mkdir /app
WORKDIR /app
RUN apk --no-cache add --virtual builds-deps build-base python
RUN npm config set python /usr/bin/python
RUN npm i -g npm
RUN npm install
RUN npm rebuild bcrypt --build-from-source
RUN apk del builds-deps