# syntax=docker/dockerfile:1 FROM node:16.0.0-alpine WORKDIR /app COPY ./ ./ RUN npm install CMD ["node", "index.js"]