Poke_Transporter_GB/Dockerfile
Philippe Symons d0cfed6018 Fix some build issues
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.
2026-02-19 21:49:43 +01:00

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