combine.fm/Dockerfile

11 lines
171 B
Text
Raw Normal View History

2015-06-14 19:22:33 +01:00
FROM iojs:slim
2015-02-15 19:18:43 +00:00
MAINTAINER Jonathan Cremin <jonathan@crem.in>
ADD package.json package.json
RUN npm install
2015-06-14 19:22:33 +01:00
COPY . .
2015-02-15 19:18:43 +00:00
RUN npm run build
EXPOSE 3000
CMD npm start