mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-22 01:44:36 -05:00
- Fix make clean by adding -f flag when removing output.json - Fix broken compress_lz10.sh script: it had a check to avoid compressing when the input bin file hasn't changed. But the -nt operator also returns false if the output file doesn't exist. - Fix compilation error on conflicting u32 typedef: libtonc defines one and so does data-generator. We shouldn't redefine it if the one from libtonc exists. The one in data-generator exists for compiling the tool for pc. - Fix Dockerfile. For some reason the Dockerfile was now failing because Ubuntu manages the python pip packages. I fixed it with the --break-system-packages shortcut. It should be fine.
13 lines
274 B
Docker
13 lines
274 B
Docker
FROM devkitpro/devkitarm
|
|
|
|
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 python3-pip && pip install pandas requests openpyxl --break-system-packages
|