services:
  unit-lint:
    build:
      context: .
      target: unit-lint
    environment:
      - DD_TRACE_ENABLED=0
    volumes:
      - .:/var/app
  integration-test:
    build:
      context: .
      target: integration-test
    environment:
      - QA_BASE_URL=https://qa-ows-participant.theorchard.io
    volumes:
      - .:/var/app
  deploy:
    build:
      context: .
      target: deploy
    volumes:
      - .:/var/app
