Skip to content

Commit

Permalink
fix build error on arm (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf authored Oct 15, 2024
1 parent 665aedd commit 2aebef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ RUN \
RBFEEDER_VERSION=$(/usr/bin/rbfeeder --no-start --version | cut -d " " -f 2,4 | tr -d ")" | tr " " "-") && \
echo "$RBFEEDER_VERSION" > /CONTAINER_VERSION && \
# delete unnecessary qemu binaries to save lots of space
find /usr/bin -regex '/usr/bin/qemu-.*-static' | grep -v qemu-arm-static | xargs rm -vf {} && \
{ find /usr/bin -regex '/usr/bin/qemu-.*-static' | grep -v qemu-arm-static | xargs rm -vf {} || true; } && \
# clean up
apt-get remove -y "${TEMP_PACKAGES[@]}" && \
apt-get autoremove -y && \
Expand Down

0 comments on commit 2aebef7

Please sign in to comment.