mirror of
https://github.com/docker-training/node-bulletin-board.git
synced 2025-05-17 19:39:31 +08:00
6 lines
71 B
Docker
6 lines
71 B
Docker
FROM node
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install
|
|
CMD [ "npm", "start" ]
|