mirror of
https://github.com/Maschell/libgui-sdl.git
synced 2024-11-16 21:19:19 +01:00
11 lines
350 B
Docker
11 lines
350 B
Docker
|
FROM wiiuenv/devkitppc:20200810
|
||
|
|
||
|
RUN dkp-pacman -Syu && dkp-pacman -S --noconfirm wiiu-sdl2-libs && dkp-pacman -Scc --noconfirm
|
||
|
|
||
|
WORKDIR tmp_build
|
||
|
COPY . .
|
||
|
RUN make clean && make -j8 && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
|
||
|
WORKDIR /artifacts
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=0 /artifacts /artifacts
|