#!/bin/bash
FROM registry.cn-beijing.aliyuncs.com/hantang/node105:v2
MAINTAINER jy "jiangyong@gongsibao.com"
ADD center-app /apps/center-app/
WORKDIR   /apps/center-app/
RUN cnpm install -S
CMD  ["node","/apps/center-app/main.js"]




