FROM node:20-alpine WORKDIR /app ENV NODE_ENV=production COPY package*.json ./ RUN npm ci --omit=dev COPY index.js ./ COPY config ./config COPY routes ./routes COPY services ./services EXPOSE 3001 CMD ["node", "index.js"]