mirror of
https://github.com/wiiu-env/librpxloader.git
synced 2024-11-01 00:15:06 +01:00
9 lines
241 B
Docker
9 lines
241 B
Docker
FROM wiiuenv/devkitppc:20220806
|
|
|
|
WORKDIR tmp_build
|
|
COPY . .
|
|
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums
|
|
WORKDIR /artifacts
|
|
|
|
FROM scratch
|
|
COPY --from=0 /artifacts /artifacts |