mirror of
https://github.com/wiiu-env/homebrew_launcher_installer.git
synced 2024-11-21 17:59:19 +01:00
Add a dockerfile for building via docker
This commit is contained in:
parent
b6c666214b
commit
c3abe437f5
3
Dockerfile
Normal file
3
Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM wiiuenv/devkitppc:20200810
|
||||
|
||||
WORKDIR project
|
16
README.md
16
README.md
@ -28,6 +28,22 @@ DEVKITPPC=/opt/devkitpro/devkitPPC
|
||||
The command `make` should produce a `payload.elf`, meant to be used with the
|
||||
[payload_loader](https://github.com/wiiu-env/payload_loader)
|
||||
|
||||
## 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 hbl-installer-builder
|
||||
|
||||
# make
|
||||
docker run -it --rm -v ${PWD}:/project hbl-installer-builder make
|
||||
|
||||
# make clean
|
||||
docker run -it --rm -v ${PWD}:/project hbl-installer-builder make clean
|
||||
```
|
||||
|
||||
|
||||
# Credits
|
||||
|
||||
- dimok789: [original installer](https://github.com/dimok789/homebrew_launcher))
|
||||
|
Loading…
Reference in New Issue
Block a user