container_name: SERVICE_NAME
stateless: true
platforms:
  local:
    envfile: .env
    build: deno cache main.ts && deno run app.js
  docker:
    envfile: .env
    build: ./run.Dockerfile
    ports:
      - PORT:3000
