2022-01-22 22:39:16 +00:00
|
|
|
FROM docker.io/library/rockylinux:8
|
|
|
|
|
|
|
|
RUN dnf install -y findutils util-linux sudo python3 NetworkManager
|
|
|
|
|
|
|
|
RUN systemctl unmask console-getty.service dev-hugepages.mount \
|
|
|
|
getty.target sys-fs-fuse-connections.mount systemd-logind.service \
|
|
|
|
systemd-remount-fs.service
|
2022-08-01 02:56:10 +00:00
|
|
|
|
|
|
|
# /etc/machine-id needs to be populated for /bin/kernel-install to
|
|
|
|
# correctly copy kernels into /boot. We will clear this out in the
|
|
|
|
# final image.
|
|
|
|
RUN systemd-machine-id-setup
|