FROM node:lts-alpine3.20 WORKDIR /app COPY package.json ./ COPY package-lock.json ./ COPY index.js ./ RUN npm ci CMD ["node", "index.js"]