services:
  app:
    image: node:22-alpine
    working_dir: /app
    command: sh -c "npm install && npm start"
    ports:
      - "3000:3000"
    volumes:
      - ./:/app
    restart: unless-stopped
