Skip to content

Commit 6ef0524

Browse files
committed
fix(build): use busybox instead of scratch to copy build output
1 parent 8342d2c commit 6ef0524

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker/Dockerfile.arch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ RUN sed -i 's|source=.*|source=()|' PKGBUILD && \
3030
sed -i 's|git submodule.*||' PKGBUILD
3131
RUN makepkg --noconfirm # no -s, deps already installed
3232

33-
FROM scratch
33+
FROM busybox
3434
COPY --from=builder /home/builder/*.pkg.tar.zst /pkg-out/

docker/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ RUN cpack --config build/CPackConfig.cmake -G RPM
1414
RUN mkdir rpm-out
1515
RUN cp /app/ArenaRush-*.rpm /app/rpm-out/
1616

17-
FROM scratch
17+
FROM busybox
1818
COPY --from=builder /app/rpm-out/*.rpm /rpm-out/

0 commit comments

Comments
 (0)