10 lines
111 B
Docker

FROM node:alpine
WORKDIR /usr/app
COPY ./package.json /usr/app
RUN npm install
COPY . .
CMD ["npm","start"]