FROM node:alpine

WORKDIR /node/nodeapp

COPY . .

RUN npm install

CMD ["npm","start"]