koa-template/Dockerfile

7 lines
119 B
Docker
Raw Permalink Normal View History

2019-12-18 02:59:34 +00:00
FROM node:lts-alpine
LABEL maintainer="Jay <admin@trj.tw>"
WORKDIR /data
COPY . .
RUN npm install
CMD ["npm", "start"]