FROM node:18-slim WORKDIR /app COPY package*.json ./ RUN npm ci --production COPY . . RUN npm run build CMD ["node", "dist/index.js"]