[Docker系列·3] 搭建基于Docker的NodeJS服务器
0 node应用·盗梦空间
1 docker的NodeJs工作目录
/home/erichan/docker-room/ubuntu-node
2 docker的Dockerfile
[erichan@mars-centos7 ubuntu-node]$ nano Dockerfile
# Version: 0.0.1
FROM feuyeux/ubuntu-base
MAINTAINER Eric Han "feuyeux@gmail.com"
RUN apt-get -yq install nodejs
RUN apt-get -yq install npm
COPY index.js ./index.js
COPY package.json ./package.json
RUN npm install
EXPOSE 8080
CMD