[Docker] Add missing share folder to artifacts

This commit is contained in:
Maschell 2020-08-12 18:05:12 +02:00
parent 42de4e1d46
commit e8021bd28e
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM wiiuenv/devkitppc:20200625
WORKDIR tmp_build
COPY . .
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums
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