version: '3.8'

services:

  ows-location:
    build:
      context: .
      target: dev
    ports:
      - '5001:8080'
    environment:
      APP_DEBUG: 'true'
      PORT: 8080
      Environment: dev
    volumes:
      - .:/var/app

  lint-and-test:
    build:
      context: .
      target: lint-and-test
    volumes:
      - .:/var/app
