FROM node:16-bullseye RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y && apt-get clean WORKDIR /app COPY package*.json ./ RUN npm install RUN npm ci --only=production COPY . . EXPOSE 8080 CMD [ "npm", "run", "start" ]