services:

  server:
    image: node:24
    volumes:
      - ./app:/app
    working_dir: /app
    restart: unless-stopped
    command: sh -c "npm install && node index.js"
    ports:
      - 3000:3000