mirror of
https://github.com/docker-training/node-bulletin-board.git
synced 2025-05-17 11:39:30 +08:00
10 lines
109 B
Docker
10 lines
109 B
Docker
FROM node:6.11.5
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package.json .
|
|
RUN npm install
|
|
COPY . .
|
|
|
|
CMD [ "npm", "start" ]
|
|
|