FROM node:latest
WORKDIR /app
COPY package.json /app
RUN npm install
COPY server.js /app
CMD ["npm","start"]