pokeemerald/docker-compose.yml
Gregory Markou (ai) 7d8c2b8ff6
feat: add Docker build environment
Ubuntu 24.04 container with ARM cross-compilation toolchain for
building the ROM without host toolchain setup. Includes Makefile
targets for docker-build, docker-shell, and docker-clean.

Co-Authored-By: Claude
2026-04-06 23:46:45 +09:00

13 lines
280 B
YAML

services:
pokeemerald:
build: .
working_dir: /workspace
environment:
CCACHE_DIR: /ccache
volumes:
- ./:/workspace
- pokeemerald_ccache:/ccache
command: bash -lc "make clean-tools && make MODERN=1 -j$$(nproc)"
volumes:
pokeemerald_ccache: