d4t_formulas/docker-compose.yml

13 lines
353 B
YAML
Raw Normal View History

2026-01-08 17:47:48 +00:00
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