libmocha/Dockerfile
Maschell 50fefdf830
Some checks failed
Publish Docker Image / build-and-push-image (push) Has been cancelled
Update Dockerfile
2026-03-31 12:56:59 +02:00

9 lines
259 B
Docker

FROM ghcr.io/wiiu-env/devkitppc:20260225
WORKDIR tmp_build
COPY . .
RUN make clean && make && 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