first commit

This commit is contained in:
Maschell 2018-09-23 14:34:36 +02:00
commit da52fc9573
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/fs_wrapper -b wut && cd fs_wrapper && git checkout 822d116e81d1d6dbda9b23923bb689150b17e401
RUN cd fs_wrapper && mkdir build && cd build && \
cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DCMAKE_INSTALL_PREFIX=/artifacts ../ &&\
make install
RUN rm -rf fs_wrapper
WORKDIR /artifacts

8
README.md Normal file
View File

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