mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-07-15 07:44:11 -05:00
15 lines
453 B
Docker
15 lines
453 B
Docker
FROM devkitpro/devkitarm:20251117
|
|
|
|
LABEL author="Poke Transporter GB"
|
|
|
|
USER root
|
|
|
|
ARG USER_ID
|
|
ARG GROUP_ID
|
|
|
|
ENV DEBIAN_FRONTEND="noninteractive"
|
|
|
|
RUN apt update && apt install -y build-essential cmake bison flex pkg-config libpng-dev git python3-pip python3-png python3-debugpy && pip install pandas requests openpyxl --break-system-packages
|
|
|
|
RUN git clone https://github.com/gbdev/rgbds.git && cd rgbds && make -j$(nproc) && make install
|