hostr/Dockerfile

15 lines
178 B
Text
Raw Normal View History

2015-07-09 23:01:43 +01:00
FROM kudoz/iojs-gm
MAINTAINER Jonathan Cremin <jonathan@crem.in>
WORKDIR /app
COPY . .
RUN npm install && npm rebuild node-sass
RUN npm run build
EXPOSE 4040
CMD npm start