mirror of
https://github.com/Ryuzaki-MrL/savemii.git
synced 2026-04-12 20:55:58 -05:00
14 lines
317 B
Docker
14 lines
317 B
Docker
FROM wiiuenv/devkitppc:20220806 AS final
|
|
|
|
COPY --from=wiiuenv/libiosuhax:latest /artifacts $DEVKITPRO
|
|
|
|
CMD dkp-pacman -Syyu --noconfirm ppc-freetype
|
|
|
|
RUN git clone --recursive https://github.com/Crementif/libfat && \
|
|
cd libfat && \
|
|
make -j$(nproc) wiiu-install && \
|
|
cd .. && \
|
|
rm -rf libfat
|
|
|
|
WORKDIR /project
|