services:
  fastapi:
    build: .
    ports:
      - "8000:8000"
    environment:
      - Environment=dev
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:8000"]
      interval: 30s
      timeout: 10s
      retries: 3