#NODE LTS FROM node:10 # Workdir WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . CMD ["npm", "start"]