selinux y podman

This commit is contained in:
alvaro@a37 2026-01-09 11:45:11 +01:00
parent a0d9a34182
commit c1d76ed496
3 changed files with 7 additions and 11 deletions

View file

@ -10,10 +10,10 @@ build-android-release-podman: build-podman
podman-compose run --entrypoint "flutter build apk --release" flutter
build-linux-debug-podman: build-podman
podman-compose run --entrypoint "flutter build linux" flutter
podman-compose run --entrypoint "flutter build linux --debug" flutter
run-linux-debug: build-linux-debug-podman
build/linux/x64/debug/bundle/d4rt_formulas
run-web-release-podman: build-web-release-podman
podman-compose run --entrypoint "cd build/web && python3 -m http.server 8080" flutter
cd build/web && python3 -m http.server 8080

View file

@ -123,15 +123,11 @@ Each formula includes:
- **Images** - Visual diagrams, graphs, or illustrations
- **Examples** - Sample calculations and use cases
## Project Structure
- `bin/` - Main executable and entry point
- `lib/` - Core library code and formula engine
- `test/` - Unit tests and formula validation tests
## Getting Started
[Installation and usage instructions to be added]
This project uses `flutter`, so a valid installation is needed in order to build it.
For convenience, a containerized build is provided. It is based on `podman` and `podman-compose`. See [Makefile](Makefile) for details.
## Contributing

View file

@ -7,7 +7,7 @@ services:
dockerfile: Dockerfile
image: d4rt-formulas-builder
volumes:
- ./docker/cache:/cache
- .:/app # Link the current directory to /app in the container
- ./docker/cache:/cache:z
- .:/app:z # Link the current directory to /app in the container
environment:
- FLUTTER_FLAVOR=prod # Example environment variable, adjust as needed