Add a Dockerfile

This commit is contained in:
Maschell 2020-06-27 12:39:03 +02:00
parent a70fb9a177
commit c7a40da972

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM wiiuenv/devkitppc:20200625
WORKDIR tmp_build
COPY . .
RUN make clean && make -j8 && 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