
#http://stackoverflow.com/questions/27701930/add-user-to-docker-container

# start with this image as a base
FROM node:5

RUN npm cache clean

RUN chmod -R 777 $(npm root -g)

RUN mkdir -p /usr/src/app

WORKDIR /usr/src/app

COPY . .

ENTRYPOINT ["/usr/src/app/test.sh"]

