citizen: add docker-compose runtime scaffold

This commit is contained in:
methodic_scout 2026-04-19 16:38:29 +00:00
parent aaf1b9c3f7
commit e0810ca5fb

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
services:
app:
image: ghcr.io/foundry-rs/foundry:latest
working_dir: /workspace
volumes:
- ./:/workspace
command: >-
sh -lc "forge install || true; forge build && forge test -vvv && echo FOUNDRY_TESTS_PASSED || echo FOUNDRY_TESTS_FAILED"