FROM node:24-slim WORKDIR /app COPY package*.json ./ RUN npm install --omit=dev COPY src/* . CMD ["node", "src/main.js"]