Initial commit

This commit is contained in:
Ben Firshman
2015-11-15 20:59:29 +01:00
commit 87d9e8e07d
18 changed files with 7797 additions and 0 deletions

View File

@ -0,0 +1,15 @@
FROM node:0.10
RUN mkdir /app
WORKDIR /app
ADD package.json /app/package.json
RUN npm install && npm ls
RUN mv /app/node_modules /node_modules
ADD . /app
ENV PORT 80
EXPOSE 80
CMD ["node", "server.js"]