mirror of
https://github.com/Maschell/dynamic_libs.git
synced 2024-11-14 17:05:16 +01:00
13 lines
357 B
Docker
13 lines
357 B
Docker
FROM wiiulegacy/core:0.1
|
|
|
|
MAINTAINER Maschell <maschell@gmx.de>
|
|
|
|
RUN git clone https://github.com/Maschell/dynamic_libs -b lib && cd dynamic_libs && git checkout v0.1
|
|
WORKDIR dynamic_libs
|
|
|
|
RUN rm -rf $DEVKITPRO/portlibs && 7z x -y ./libs/portlibs.zip -o${DEVKITPRO}
|
|
|
|
RUN make && make install && \
|
|
cp -r ${DEVKITPRO}/portlibs /artifacts
|
|
|
|
WORKDIR /artifacts |