FROM node:alpine

WORKDIR /react/reactapp

COPY . .

RUN npm install

CMD ["npm","start"]