mirror of
https://github.com/Maschell/StreamingPluginWiiU.git
synced 2025-02-22 15:47:15 +01:00
Add a Dockerfile for building the plugin
This commit is contained in:
parent
5c1733f55c
commit
fbefe2ad95
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM wups/core-with-wut:0.1
|
||||||
|
|
||||||
|
# Get dependencies
|
||||||
|
COPY --from=wiiuwut/libutils:0.1 /artifacts $WUT_ROOT
|
||||||
|
|
||||||
|
WORKDIR project
|
14
README.md
14
README.md
@ -49,3 +49,17 @@ Other external libraries are already located in the `libs` folder.
|
|||||||
|
|
||||||
- libjpeg
|
- libjpeg
|
||||||
- [libturbojpeg](https://libjpeg-turbo.org/)
|
- [libturbojpeg](https://libjpeg-turbo.org/)
|
||||||
|
|
||||||
|
### 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 screenstreamer-builder
|
||||||
|
|
||||||
|
# make
|
||||||
|
docker run -it --rm -v ${PWD}:/project screenstreamer-builder make
|
||||||
|
|
||||||
|
# make clean
|
||||||
|
docker run -it --rm -v ${PWD}:/project screenstreamer-builder make clean
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user