Fix the Dockerfile and copy the file into the right directory

This commit is contained in:
Maschell 2020-12-10 20:29:42 +01:00
parent f8705b2c39
commit a2357a4778
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ COPY --from=wiiuenv/libiosuhax:20200812 /artifacts $DEVKITPRO
WORKDIR tmp_build
COPY . .
RUN make clean && make wiiu-release && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include //artifacts/wut/usr
RUN make clean && make wiiu-release && mkdir -p /artifacts/wut/usr && mkdir -p /artifacts/wut/usr/lib && cp lib/wiiu/libntfs.a /artifacts/wut/usr/lib && cp -r include /artifacts/wut/usr
WORKDIR /artifacts
FROM scratch