hostr/Dockerfile
2015-08-03 22:06:40 +01:00

14 lines
178 B
Docker

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