first commit

This commit is contained in:
Maschell 2018-09-23 14:30:37 +02:00
commit 149e00aa74
2 changed files with 26 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM wiiuwut/core:1.0.0-beta4
MAINTAINER Maschell <maschell@gmx.de>
RUN mkdir /artifacts
# Get dependencies
COPY --from=wiiuwut/libutils:0.1 /artifacts $WUT_ROOT
RUN git clone https://github.com/Maschell/controller_patcher -b wut && cd controller_patcher && git checkout fd70b257c6921294a8643d1f2c3d5c0175081844
RUN cd controller_patcher && mkdir build && cd build && \
cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DCMAKE_INSTALL_PREFIX=/artifacts ../ &&\
make install
RUN rm -rf controller_patcher
WORKDIR /artifacts

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# controller_patcher Dockerfile (wut)
The image `wiiuwut/controller_patcher` on [Docker Hub](https://hub.docker.com/r/wiiuwut/controller_patcher/) provides a prebuilt library in the `/artifacts` directory. Copy it into your WUT_ROOT folder.
Example:
```
COPY --from=wiiuwut/controller_patcher:0.1 /artifacts $WUT_ROOT
```