FROM rockylinux:8.9 MAINTAINER Robert Cowham "rcowham@perforce.com" RUN dnf update -y; \ dnf install -y bc; \ dnf install -y cronie; \ dnf install -y curl; \ dnf install -y diffutils; \ dnf install -y file; \ dnf install -y findutils; \ dnf install -y perl; \ dnf install -y procps-ng; \ dnf install -y rsync; \ dnf install -y sudo; \ dnf install -y tar; \ dnf install -y which; \ dnf install -y wget RUN dnf install -y openssh-server openssh-clients passwd; \ dnf clean all; \ ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''; \ ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N '' # Some tools needed for testing or useful for interactive test inspection. RUN dnf install -y vim