FROM node:16 WORKDIR /docker COPY package.json ./ COPY yarn.lock ./ RUN yarn COPY . . CMD ["node", "index.js"]