mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-13 06:15:11 +01:00
16 lines
395 B
Docker
16 lines
395 B
Docker
FROM ghcr.io/wiiu-env/devkitppc:20230621
|
|
|
|
WORKDIR tmp_build
|
|
COPY . .
|
|
RUN make clean && make && mkdir -p /artifacts/wups && cp -r lib /artifacts/wups && cp -r include /artifacts/wups && cp -r share /artifacts/wups
|
|
WORKDIR /artifacts
|
|
|
|
FROM scratch as libwups
|
|
COPY --from=0 /artifacts /artifacts
|
|
|
|
FROM ghcr.io/wiiu-env/devkitppc:20230621
|
|
|
|
COPY --from=libwups /artifacts $DEVKITPRO
|
|
|
|
WORKDIR project
|