diff --git a/Dockerfile b/Dockerfile index 2a5cfa6..3f69e54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,13 @@ FROM wiiulegacy/core:0.1 -RUN rm -rf $DEVKITPRO/portlibs -RUN git clone https://github.com/Maschell/dynamic_libs -b lib +MAINTAINER Maschell + +RUN git clone https://github.com/Maschell/dynamic_libs -b lib && cd dynamic_libs && git checkout v0.1 WORKDIR dynamic_libs -RUN git checkout -b v0.1 -RUN 7z x -y ./libs/portlibs.zip -o${DEVKITPRO} -RUN make && make install -WORKDIR .. -RUN rm -rf dynamic_libs \ No newline at end of file + +RUN rm -rf $DEVKITPRO/portlibs && 7z x -y ./libs/portlibs.zip -o${DEVKITPRO} + +RUN make && make install && \ + cp -r ${DEVKITPRO}/portlibs /artifacts + +WORKDIR /artifacts \ No newline at end of file