重建基础镜像

这一步目的,基于官方基础上再建立自己的基础镜像; 一般公司或个人有自己的应用开发框,重建基础镜像目的使自己带有这个应用开发框的成为基础开发镜镜,当然没有自己的应用开发框或不需要自己的应用开发框就可以忽烈这个步骤。

编写Dockerfile,

以下在中级课程中讲述 ``` FROM 218.205.113.98:5000/node:5.1.0

RUN npm install -g cnpm --registry=https://r.cnpmjs.org

RUN npm config set strict-ssl false

RUN npm install -g cnpm --registry=http://r.cnpmjs.org

RUN npm install microtime --registry=http://r.cnpmjs.org --disturl=http://dist.cnpmjs.org

RUN cnpm install [email protected] -g

docker build -t . tag 218.205.113.98:5000/node:5.1.0:label