mirror of
https://github.com/Maschell/libgui-sdl.git
synced 2024-11-16 13:09:20 +01:00
9 lines
298 B
Docker
9 lines
298 B
Docker
FROM wiiuenv/devkitppc-with-sdl2:20201002
|
|
|
|
WORKDIR tmp_build
|
|
COPY . .
|
|
RUN make -f Makefile.wiiu clean && make -f Makefile.wiiu -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 |