diff --git a/Dockerfile b/Dockerfile index 620baab..1d8d299 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \