pokeemerald/Dockerfile
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

21 lines
365 B
Docker

FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
ENV PATH="/usr/lib/ccache:${PATH}"
RUN apt-get update && apt-get install -y \
build-essential \
binutils-arm-none-eabi \
gcc-arm-none-eabi \
git \
make \
python3 \
ccache \
libpng-dev \
&& rm -rf /var/lib/apt/lists/*
ENV CCACHE_DIR=/ccache
WORKDIR /workspace
CMD ["bash"]