Add dockerfile

This commit is contained in:
Maschell 2020-06-25 18:48:21 +02:00
parent 2be0d57e40
commit f8bb5e97f7
2 changed files with 18 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM wiiuenv/devkitppc:20200625
WORKDIR project

View File

@ -8,6 +8,21 @@ Place the `payload.elf` in the `sd:/wiiu` folder of your sd card and run a explo
For building you just need [wut](https://github.com/devkitPro/wut/) installed, then use the `make` command. For building you just need [wut](https://github.com/devkitPro/wut/) installed, then use the `make` command.
## Building using the Dockerfile
It's possible to use a docker image for building. This way you don't need anything installed on your host system.
```
# Build docker image (only needed once)
docker build . -t customrpxloader-builder
# make
docker run -it --rm -v ${PWD}:/project customrpxloader-builder make
# make clean
docker run -it --rm -v ${PWD}:/project customrpxloader-builder make clean
```
## Credits ## Credits
- Maschell - Maschell
- orboditilt - orboditilt