Files
libmappedmemory/Dockerfile
Maschell 8a2273bfa4
Some checks failed
Publish Docker Image / build-and-push-image (push) Has been cancelled
Update Dockerfile
2026-03-31 13:03:35 +02:00

9 lines
281 B
Docker

FROM ghcr.io/wiiu-env/devkitppc:20260225
WORKDIR tmp_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