Ubuntu rolling (which is currently 25.10) uses uutil's coreutils as well
and is affected by the same bugs as Ubuntu devel.
So use GNU coreutils instead of uutil's coreutils on Ubuntu rolling.
; fi
# use GNU coreutils instead of uutil's coreutils until https://github.com/uutils/coreutils/issues/9057 and https://launchpad.net/bugs/2129037 are fixed
-RUN if [ "$DISTRIBUTION" = "ubuntu:devel" ]; then \
+RUN if [ "$DISTRIBUTION" = "ubuntu:devel" ] || [ "$DISTRIBUTION" = "ubuntu:rolling" ]; then \
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends -o Dpkg::Use-Pty=0 \
coreutils-from-gnu coreutils-from-uutils- --allow-remove-essential; \
fi