WiiUModuleSystem/Dockerfile

9 lines
277 B
Docker
Raw Normal View History

2023-06-21 11:13:12 +02:00
FROM ghcr.io/wiiu-env/devkitppc:20230621
2020-06-25 18:45:15 +02:00
WORKDIR build
COPY . .
2020-08-09 21:16:07 +02:00
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums && cp -r share /artifacts/wums
2020-06-25 18:45:15 +02:00
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts