FROM node:16.16.0-alpine3.16 COPY src/ ./ COPY package.json package.json EXPOSE 8080 RUN npm install CMD ["node", "index.js"]