mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-27 10:04:16 +01:00
Add a Dockerfile
This commit is contained in:
parent
d1a5a7f1c2
commit
d14f764960
5
Dockerfile
Normal file
5
Dockerfile
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
FROM wiiuenv/devkitppc:20200625
|
||||||
|
|
||||||
|
COPY --from=wiiuenv/wiiumodulesystem:20200625 /artifacts $DEVKITPRO
|
||||||
|
|
||||||
|
WORKDIR project
|
16
README.md
16
README.md
@ -16,6 +16,22 @@ Make you to have [wut](https://github.com/devkitPro/wut/) and [WiiUModuleSystem]
|
|||||||
make install
|
make install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## 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 setuppayload-builder
|
||||||
|
|
||||||
|
# make
|
||||||
|
docker run -it --rm -v ${PWD}:/project setuppayload-builder make
|
||||||
|
|
||||||
|
# make clean
|
||||||
|
docker run -it --rm -v ${PWD}:/project setuppayload-builder make clean
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
- maschell
|
- maschell
|
||||||
- Copy paste stuff from dimok
|
- Copy paste stuff from dimok
|
||||||
|
Loading…
Reference in New Issue
Block a user