first commit

This commit is contained in:
Maschell 2018-09-23 12:45:25 +02:00
commit cccd50e6ab
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM wiiuwut/core:1.0.0-beta4
RUN mkdir /artifacts
RUN git clone https://github.com/Maschell/libutils -b wut && cd libutils && git checkout 534388dae50df8dd8d496010fe944259b1bf2609
RUN cd libutils && mkdir build && cd build && \
cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DCMAKE_INSTALL_PREFIX=/artifacts ../ &&\
make install
RUN rm -rf libutils
WORKDIR /artifacts