├── README.md └── Dockerfile /README.md: -------------------------------------------------------------------------------- 1 | # docker-node-socialmonitor 2 | Docker image for use with the Social Monitor 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:6-alpine 2 | 3 | RUN apk update && apk add git 4 | 5 | RUN apk --no-cache add --virtual native-deps \ 6 | g++ gcc libgcc libstdc++ linux-headers make python && \ 7 | npm install --quiet node-gyp -g &&\ 8 | npm install --quiet && \ 9 | apk del native-deps 10 | --------------------------------------------------------------------------------