FROM nodesource/node:4.0

ADD package.json package.json
RUN npm install
ADD . .
EXPOSE 3000
CMD []
ENTRYPOINT ["node", "Server.js"]