# Use Node.js 18 LTS FROM node:18-alpine # Install MongoDB CLI tools for import operations RUN apk add --no-cache mongodb-tools # Set working directory WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci --only=production # Copy application code COPY . . # Create uploads directory for images RUN mkdir -p uploads # Build the application RUN npm run build # Expose port EXPOSE 3000 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD curl -f http://localhost:3000/api/health || exit 1 # Start the application CMD ["npm", "start"]