libgui-sdl/Dockerfile.wiiu

9 lines
298 B
Docker
Raw Permalink Normal View History

FROM wiiuenv/devkitppc-with-sdl2:20201002
2020-10-02 19:57:53 +02:00
WORKDIR tmp_build
COPY . .
2020-10-02 21:04:34 +02:00
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
2020-10-02 19:57:53 +02:00
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts