This repository was archived by the owner on Apr 9, 2025. It is now read-only.
Description
I saw the link to report an issue on the official docker homepage pointing here so I report here.
Compared with almalinux:8, almalinux:9.0 doesn't include diffutils package by default after running yum update -y command.
the output from AlmaLinux release 9
sh-4.2$ docker run -it almalinux:9.0 bash
[root@590de396a6a2 /]# diff
bash: diff: command not found
[root@590de396a6a2 /]# yum update -y
AlmaLinux 9 - AppStream 16 MB/s | 7.8 MB 00:00
AlmaLinux 9 - BaseOS 6.5 MB/s | 3.4 MB 00:00
AlmaLinux 9 - Extras 29 kB/s | 12 kB 00:00
Dependencies resolved.
...
Complete!
[root@590de396a6a2 /]# diff
bash: diff: command not found
[root@590de396a6a2 /]# cat /etc/redhat-release
AlmaLinux release 9.0 (Emerald Puma)
the output from AlmaLinux release 8
sh-4.2$ docker run -it almalinux:8 bash
[root@8b5f3b9e0fce /]# diff
bash: diff: command not found
[root@8b5f3b9e0fce /]# yum update -y
AlmaLinux 8 - BaseOS 18 MB/s | 5.9 MB 00:00
AlmaLinux 8 - AppStream 31 MB/s | 10 MB 00:00
AlmaLinux 8 - Extras 104 kB/s | 18 kB 00:00
Dependencies resolved.
...
Complete!
[root@8b5f3b9e0fce /]# diff
diff: missing operand after 'diff'
diff: Try 'diff --help' for more information.
[root@8b5f3b9e0fce /]# cat /etc/redhat-release
AlmaLinux release 8.6 (Sky Tiger)
Thank you!
Reactions are currently unavailable
Compared with
almalinux:8,almalinux:9.0doesn't includediffutilspackage by default after runningyum update -ycommand.Thank you!