WiiUIdent/Dockerfile

18 lines
411 B
Docker
Raw Permalink Normal View History

2024-04-02 17:11:20 +02:00
FROM ghcr.io/wiiu-env/devkitppc:20231112
2023-03-30 21:40:17 +02:00
2024-04-02 17:11:20 +02:00
COPY --from=ghcr.io/wiiu-env/libmocha:20231127 /artifacts $DEVKITPRO
# Build latest wut
RUN \
mkdir wut && \
cd wut && \
git init . && \
git remote add origin https://github.com/devkitPro/wut.git && \
git fetch --depth 1 origin 682f8eb48a79796e653eb711c001ba47355f351c && \
git checkout FETCH_HEAD
WORKDIR /wut
RUN make -j$(nproc)
RUN make install
2023-03-30 21:40:17 +02:00
WORKDIR /project