FROM node:20-slim WORKDIR /app COPY index.js package*.json ./ RUN npm install --production EXPOSE 8080 CMD ["node", "index.js"]