mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-22 12:49:17 +01:00
Add a Dockerfile
This commit is contained in:
parent
2a0a0f2e0d
commit
35bdce94fb
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
FROM wiiuenv/devkitppc:20200625
|
||||||
|
|
||||||
|
COPY --from=wiiuenv/wiiumodulesystem:20200626 /artifacts $DEVKITPRO
|
||||||
|
COPY --from=wiiuenv/wiiupluginsystem:20200626 /artifacts $DEVKITPRO
|
||||||
|
COPY --from=wiiuenv/libfunctionpatcher:20200626 /artifacts $DEVKITPRO
|
||||||
|
|
||||||
|
WORKDIR project
|
15
README.md
15
README.md
@ -31,6 +31,21 @@ DEVKITPPC=/opt/devkitpro/devkitPPC
|
|||||||
Also make sure to install [wut](https://github.com/decaf-emu/wut), [WiiUPluginSystem](https://github.com/wiiu-env/WiiUPluginSystem) and the [WiiUModuleSystem](https://github.com/wiiu-env/WiiUModuleSystem).
|
Also make sure to install [wut](https://github.com/decaf-emu/wut), [WiiUPluginSystem](https://github.com/wiiu-env/WiiUPluginSystem) and the [WiiUModuleSystem](https://github.com/wiiu-env/WiiUModuleSystem).
|
||||||
It requires the [FunctionPatcherModule](https://github.com/wiiu-env/FunctionPatcherModule) to be running at the same time and it's linking aginst [libfunctionpatcher](https://github.com/wiiu-env/libfunctionpatcher).
|
It requires the [FunctionPatcherModule](https://github.com/wiiu-env/FunctionPatcherModule) to be running at the same time and it's linking aginst [libfunctionpatcher](https://github.com/wiiu-env/libfunctionpatcher).
|
||||||
|
|
||||||
|
## 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 wiiupluginloaderbackend-builder
|
||||||
|
|
||||||
|
# make
|
||||||
|
docker run -it --rm -v ${PWD}:/project wiiupluginloaderbackend-builder make
|
||||||
|
|
||||||
|
# make clean
|
||||||
|
docker run -it --rm -v ${PWD}:/project wiiupluginloaderbackend-builder make clean
|
||||||
|
```
|
||||||
|
|
||||||
# Credits
|
# Credits
|
||||||
- Maschell
|
- Maschell
|
||||||
- orboditilt
|
- orboditilt
|
||||||
|
Loading…
Reference in New Issue
Block a user