mirror of
https://github.com/docker-training/node-bulletin-board.git
synced 2025-05-18 03:49:31 +08:00
12 lines
197 B
Docker
12 lines
197 B
Docker
FROM node:6.11.5
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package.json .
|
|
RUN npm install
|
|
|
|
EXPOSE 8080
|
|
CMD [ "npm", "start" ]
|
|
|
|
COPY . .
|
|
|
|
HEALTHCHECK --interval=5s CMD curl --fail http://localhost:8080 || exit 1 |