add rocky linux 9

This commit is contained in:
Gilles Grandou 2023-12-04 22:13:21 +01:00
parent 96f1fa0b8c
commit c0bbec80e1
1 changed files with 9 additions and 0 deletions

View File

@ -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