container_name: SERVICE_NAME
stateless: true
platforms:
  local:
    envfile: .env
    build: pip install -r requirements.txt && python app.py
  docker:
    envfile: .env
    build: ./run.Dockerfile
    ports:
      - PORT:5000
