1 FROM node:16-alpine 2 WORKDIR /usr/src/app 3 COPY package*.json ./ 4 RUN npm install 5 COPY . . 6 CMD ["node", "index.js"] 7