FROM node:16.15.0-alpine WORKDIR /app COPY package.json ./ RUN npm install --production COPY . . EXPOSE 8080 CMD node main