Update Dockerfile to copy artifacts to the folder "artifacts", cleanups and added a maintainer

This commit is contained in:
Maschell 2018-09-21 16:03:47 +02:00
parent b888d8f57b
commit 328cd21fa8

View File

@ -1,10 +1,13 @@
FROM wiiulegacy/core:0.1 FROM wiiulegacy/core:0.1
RUN rm -rf $DEVKITPRO/portlibs MAINTAINER Maschell <maschell@gmx.de>
RUN git clone https://github.com/Maschell/dynamic_libs -b lib
RUN git clone https://github.com/Maschell/dynamic_libs -b lib && cd dynamic_libs && git checkout v0.1
WORKDIR dynamic_libs WORKDIR dynamic_libs
RUN git checkout -b v0.1
RUN 7z x -y ./libs/portlibs.zip -o${DEVKITPRO} RUN rm -rf $DEVKITPRO/portlibs && 7z x -y ./libs/portlibs.zip -o${DEVKITPRO}
RUN make && make install
WORKDIR .. RUN make && make install && \
RUN rm -rf dynamic_libs cp -r ${DEVKITPRO}/portlibs /artifacts
WORKDIR /artifacts