mirror of
https://github.com/pret/pokeemerald.git
synced 2026-05-15 16:10:01 -05:00
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
13 lines
280 B
YAML
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: |