Added a docker setup
Created a docker file which has the required devkitpro devkitppc. This container also installs and configures the dependencies for this project. Without installing devkitpro and/or dependencies to your pc u will still be able to make the app.
I am not that into Docker, but why should this have a compose file? This is just another lib/artifact which will be the input for app, but nothing standalone.
I would suggest that this Dockerfile should just build the lib and may also put it into a scratch image like https://github.com/Maschell/dynamic_libs/blob/lib/Dockerfile#L15 . This reduces the size of the image massively.
Why are you using the devkitppc image instead of "wiiulegacy/core:0.1"? It has a lot of dependencies (the whole gc/wii stuff) that isn't needed/used
Wasn't aware of the wiiulegacy/core image. Good suggestion! I'll take a look into that artifact thingy!