WiiUModuleSystem/Dockerfile
Maschell 83f49137ec
Some checks failed
Publish Docker Image / build-and-push-image (push) Has been cancelled
Update Dockerfiles
2026-01-26 14:21:59 +01:00

9 lines
277 B
Docker

FROM ghcr.io/wiiu-env/devkitppc:20260126
WORKDIR build
COPY . .
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums && cp -r share /artifacts/wums
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts