FROM mhart/alpine-node:4.2.3

COPY . /app
WORKDIR /app
RUN npm install

EXPOSE 80

CMD node /app/server.js
