From c0bbec80e187500de5b4cf1af4d4b5ed9084699e Mon Sep 17 00:00:00 2001 From: Gilles Grandou Date: Mon, 4 Dec 2023 22:13:21 +0100 Subject: [PATCH] add rocky linux 9 --- runon.conf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/runon.conf b/runon.conf index 2a338ec..22fae3a 100644 --- a/runon.conf +++ b/runon.conf @@ -34,6 +34,15 @@ dockerfile = pkginstall = RUN yum install {} -y packages = xterm vim-X11 git python3 bash-completion +[rocky9] +dockerfile = + FROM rockylinux:9 + RUN dnf install sudo -y + RUN echo "Defaults lecture = never" >> /etc/sudoers + RUN echo "ALL ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers +pkginstall = RUN dnf install {} -y +packages = xterm vim-X11 git python3 bash-completion + [debian8] dockerfile = FROM debian:8