mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-21 17:34:42 -05:00
Problem 1: syntax error in text_helper Fix 1: single quotes instead of double quotes Problem 2: the ground shifted beneath our feet with the devkitpro/devkitARM base image again. The --break-system-packages option no longer exists on pip install. Fix 2: Use a specific tag of the devkitpro/devkitARM docker image to ensure this won't happen again.
13 lines
295 B
Docker
13 lines
295 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 python3-pip python3-png && pip install pandas requests openpyxl --break-system-packages
|