From cccd50e6abc8f52f7cb1ced7b419787d3215b293 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 23 Sep 2018 12:45:25 +0200 Subject: [PATCH] first commit --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b256db3 --- /dev/null +++ b/Dockerfile @@ -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 \ No newline at end of file