Commit 4fc2c5b1 authored by coolfish's avatar coolfish

配置

parent 983c8272
.DS_Store
npm-debug.log
node_modules/
\ No newline at end of file
FROM node:7.9
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/
RUN npm install --production --registry=https://registry.npm.taobao.org
COPY . /usr/src/app
CMD npm start
EXPOSE 3000
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment