Files
kubernetes-hpa-example/Dockerfile
2018-10-07 00:37:33 -07:00

6 lines
127 B
Docker

FROM node:8.12.0-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install
CMD ["npm", "start"]