d4t_formulas/docker-compose.yml
2026-01-08 18:47:48 +01:00

12 lines
353 B
YAML

version: '3.8'
services:
flutter:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/app # Link the current directory to /app in the container
environment:
- FLUTTER_FLAVOR=prod # Example environment variable, adjust as needed
command: flutter build apk --release # You can run any Flutter command here