mirror of
https://github.com/wiiu-env/WiiUModuleSystem.git
synced 2024-11-16 06:49:20 +01:00
16 lines
391 B
Docker
16 lines
391 B
Docker
FROM ghcr.io/wiiu-env/devkitppc:20230417
|
|
|
|
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 as libwums
|
|
COPY --from=0 /artifacts /artifacts
|
|
|
|
FROM ghcr.io/wiiu-env/devkitppc:20230417
|
|
|
|
COPY --from=libwums /artifacts $DEVKITPRO
|
|
|
|
WORKDIR project
|