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