version: '3.4'
services:
  # We override much of the default GitHub Actions oriented Dockerfile for
  # making it easier to run the tests using Docker Compose
  app:
    build:
      context: .
      args:
        NODE_ENV: development
    command: ['npm', 'run test']
    entrypoint: ''
