geospatial-data-converter / docker-compose.yml
Joshua Sundance Bailey
refactor
6f9ad82
raw
history blame
533 Bytes
version: '3.8'
services:
test:
container_name: geospatial-data-converter-test
build:
context: .
dockerfile: Dockerfile
target: test
volumes:
- ./tests/:/home/appuser/tests/
- ./pyproject.toml:/home/appuser/pyproject.toml
working_dir: /home/appuser
command: ["pytest"]
geospatial-data-converter:
container_name: geospatial-data-converter
build:
context: .
dockerfile: Dockerfile
target: runtime
ports:
- "${APP_PORT:-7860}:${APP_PORT:-7860}"